diff options
author | kylo252 <[email protected]> | 2022-01-13 12:04:22 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-01-13 12:04:22 +0100 |
commit | ba6e1e5bc93bea2370778c17d32d6947a2e6ec78 (patch) | |
tree | 43bab96ce2aa103127bc3c2e15685e811b56d4ca /utils/installer/install_bin.sh | |
parent | d0840511d81abc08502d3f18da89d03025dcf373 (diff) | |
parent | 8a557b90c6da7b598250b48198a972cca0ff31c2 (diff) |
Merge branch 'rolling'
Diffstat (limited to 'utils/installer/install_bin.sh')
-rwxr-xr-x | utils/installer/install_bin.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/installer/install_bin.sh b/utils/installer/install_bin.sh index 4c649b44..cda02473 100755 --- a/utils/installer/install_bin.sh +++ b/utils/installer/install_bin.sh @@ -24,9 +24,9 @@ function setup_shim() { cp "$src" "$dst" - sed -e s"@RUNTIME_DIR_VAR@\"${LUNARVIM_RUNTIME_DIR}\"@"g \ - -e s"@CONFIG_DIR_VAR@\"${LUNARVIM_CONFIG_DIR}\"@"g \ - -e s"@CACHE_DIR_VAR@\"${LUNARVIM_CACHE_DIR}\"@"g "$src" \ + sed -e s"#RUNTIME_DIR_VAR#\"${LUNARVIM_RUNTIME_DIR}\"#"g \ + -e s"#CONFIG_DIR_VAR#\"${LUNARVIM_CONFIG_DIR}\"#"g \ + -e s"#CACHE_DIR_VAR#\"${LUNARVIM_CACHE_DIR}\"#"g "$src" \ | tee "$dst" >/dev/null chmod u+x "$dst" |