From e7fc43ac477ecdce853873acf108c8cf287dc536 Mon Sep 17 00:00:00 2001 From: yuk7 Date: Fri, 25 Oct 2019 10:18:31 +0900 Subject: [PATCH] Makefile: fix copy profile Fix #10 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b160965..26150f2 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ rootfs: base.tar.gz profile mkdir rootfs sudo tar -zxpf base.tar.gz -C rootfs sudo cp -f /etc/resolv.conf rootfs/etc/resolv.conf - sudo cp -f /etc/profile rootfs/etc/profile + sudo cp -f profile rootfs/etc/profile sudo chroot rootfs /sbin/apk update sudo chroot rootfs /sbin/apk add bash echo "# This file was automatically generated by WSL. To stop automatic generation of this file, remove this line." | sudo tee rootfs/etc/resolv.conf