소스 검색

Use home directory

Bob Mottram 10 년 전
부모
커밋
33dd3848ab
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      install-freedombone.sh

+ 2
- 2
install-freedombone.sh 파일 보기

@@ -87,7 +87,7 @@ DEBIAN_REPO="ftp.de.debian.org"
87 87
 DEBIAN_VERSION="jessie"
88 88
 
89 89
 # Directory where source code is downloaded and compiled
90
-INSTALL_DIR=/root/build
90
+INSTALL_DIR=$HOME/build
91 91
 
92 92
 # device name for an attached usb drive
93 93
 USB_DRIVE=/dev/sda1
@@ -95,7 +95,7 @@ USB_DRIVE=/dev/sda1
95 95
 export DEBIAN_FRONTEND=noninteractive
96 96
 
97 97
 # File which keeps track of what has already been installed
98
-COMPLETION_FILE=/root/freedombone-completed.txt
98
+COMPLETION_FILE=$HOME/freedombone-completed.txt
99 99
 if [ ! -f $COMPLETION_FILE ]; then
100 100
     touch $COMPLETION_FILE
101 101
 fi