소스 검색

setup.sh: selfupdate do not use DOTFILES_DIR

pull/1/head
10sr 10 년 전
부모
커밋
f2b4314b7d
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  1. +9
    -3
      setup.sh

+ 9
- 3
setup.sh 파일 보기

@@ -107,9 +107,15 @@ detect_systems(){

setup_selfupdate(){
_msg "Download latest setup.sh from 10sr repository."
mkdir -p "$DOTFILES_nDIR"
_download $_dotfiles_url_base/setup.sh "$DOTFILES_DIR/"setup.sh
chmod +x "$DOTFILES_DIR"/setup.sh
if test -z "$1"
then
_warn "Filename for setup script is not given"
echo "usage: setup.sh selfupdate <filename>"
_die "Abort"
fi
mkdir -vp "`dirname $1`"
_download $_dotfiles_url_base/setup.sh "$DOTFILES_DIR/$1"
chmod +x "$DOTFILES_DIR/$1"
}




불러오는 중...
취소
저장