diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-17 23:24:09 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-08-17 23:24:09 +0200 |
commit | 38fadbf29e8d7c07030e45c97fd9ee47e1b35938 (patch) | |
tree | 19a97a55371de92821016e49155d86a4ee51be15 | |
parent | add comments to .gitignore (diff) | |
download | linux-home-38fadbf29e8d7c07030e45c97fd9ee47e1b35938.tar.gz linux-home-38fadbf29e8d7c07030e45c97fd9ee47e1b35938.zip |
.appdata.sh: bugfix
-rw-r--r-- | .appdata/appdata.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.appdata/appdata.sh b/.appdata/appdata.sh index 58cc7da..582af9a 100644 --- a/.appdata/appdata.sh +++ b/.appdata/appdata.sh @@ -39,7 +39,7 @@ symlink_sublime_preferences() ( set -o errexit -o nounset -o pipefail symlink_preferences \ - "$HOME/.appdata/Sublime Text 3" \ + "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/Sublime Text 3" \ "$APPDATA/Sublime Text 3/Packages/User" ) @@ -47,6 +47,6 @@ symlink_ghc_preferences() ( set -o errexit -o nounset -o pipefail symlink_preferences \ - "$HOME/.appdata/ghc" \ + "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/ghc" \ "$APPDATA/ghc" ) |