Skip to content

Commit

Permalink
fix: fix linux install script
Browse files Browse the repository at this point in the history
  • Loading branch information
pmh-only committed Jan 18, 2021
1 parent 98e28cb commit 5b0012c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ iwr https://raw.github.com/Deplux/dpt/migrate-go/install.ps1 -useb | iex

맥OS, 리눅스 (터미널에서 입력):
```
curl -L https://raw.github.com/Deplux/dpt/migrate-go/install.sh | sh
curl -L https://raw.github.com/Deplux/dpt/migrate-go/install.sh | sudo sh
```
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ esac
install_uri="https://raw.github.com/Deplux/dpt/migrate-go/build/${target}"
install_path="/usr/local/bin/dpt"

curl --progress-bar --output "${install_path}" "${install_uri}"
curl --fail --location --progress-bar --output "${install_path}" "${install_uri}"
chmod a+x "${install_path}"

echo "Deplux tools가 성공적으로 설치되었습니다"
Expand Down

0 comments on commit 5b0012c

Please sign in to comment.