diff options
author | Guangxiong Lin <[email protected]> | 2023-01-01 20:02:44 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2023-01-01 20:02:44 +0800 |
commit | b93419000a8c446bad6ba48126f36531f0a7f9d2 (patch) | |
tree | 36d4b025930db63befeacb94de2ab4407d274408 | |
parent | 93f2df7d28a177872db1ca0815a3d1bc99295cf1 (diff) | |
download | dotfiles-b93419000a8c446bad6ba48126f36531f0a7f9d2.tar.gz dotfiles-b93419000a8c446bad6ba48126f36531f0a7f9d2.tar.bz2 dotfiles-b93419000a8c446bad6ba48126f36531f0a7f9d2.zip |
Fix bootstrap script
-rwxr-xr-x | scripts/bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index c8cf76c..b17bba6 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -dotfiles_dir=$(cd -- "$(dirname ${BASH_SOURCE}/..)" > /dev/null 2>&1; pwd -P) +dotfiles_dir=$(cd -- "$(dirname ${BASH_SOURCE})/.." > /dev/null 2>&1; pwd -P) remove_and_link () { for var in $@ |