Skip to content

Commit

Permalink
feat: quoting {{.INSTALL_DIR}}
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelLarkin committed Apr 10, 2024
1 parent 4c7b0db commit 4a3cfca
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion taskfiles/bashdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ tasks:
- defer: rm -fr bashdb-$VERSION/
- |
cd bashdb-$VERSION/
./configure --prefix={{.INSTALL_DIR}}
./configure --prefix="{{.INSTALL_DIR}}"
\make install
env:
VERSION: 5.0-1.1.2
Expand Down
6 changes: 3 additions & 3 deletions taskfiles/compiled_essentials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tasks:
- |
cd htop-$VERSION
./autogen.sh
./configure --prefix={{.INSTALL_DIR}}
./configure --prefix="{{.INSTALL_DIR}}"
\make -j $(nproc) install
dir: $HOME/tmp
env:
Expand Down Expand Up @@ -153,7 +153,7 @@ tasks:
- defer: rm -fr parallel-$VERSION
- |
cd parallel-$VERSION
./configure --prefix={{.INSTALL_DIR}}"
./configure --prefix="{{.INSTALL_DIR}}"
\make -j $(nproc) install
dir: "{{.HOME}}/tmp"
env:
Expand Down Expand Up @@ -181,7 +181,7 @@ tasks:
- |
cd tig-$VERSION
./autogen.sh
./configure --prefix={{.INSTALL_DIR}}
./configure --prefix="{{.INSTALL_DIR}}"
\make -j $(nproc) install
mkdir -p {{.BASH_COMPLETION_D}}
cp contrib/tig-completion.bash {{.BASH_COMPLETION_D}}
Expand Down
10 changes: 5 additions & 5 deletions taskfiles/compiled_trial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tasks:
- |
cd ctags
./autogen.sh
./configure --prefix={{.INSTALL_DIR}}
./configure --prefix="{{.INSTALL_DIR}}"
\make -j $(nproc)
\make -j $(nproc) install
dir: "{{.HOME}}/tmp"
Expand Down Expand Up @@ -99,7 +99,7 @@ tasks:
autoreconf -i
./configure
\make check
\make DESTDIR={{.INSTALL_DIR}} install
\make DESTDIR="{{.INSTALL_DIR}}" install
dir: "{{.HOME}}/tmp"
env:
VERSION: 1.9
Expand Down Expand Up @@ -142,7 +142,7 @@ tasks:
- defer: rm -fr node-$VERSION/
- |
cd node-$VERSION/
./configure --prefix={{.INSTALL_DIR}}
./configure --prefix="{{.INSTALL_DIR}}"
\make -j $(nproc)
\make -j $(nproc) install
dir: "{{.HOME}}/tmp"
Expand Down Expand Up @@ -189,7 +189,7 @@ tasks:
- defer: rm -fr pv-$VERSION/
- |
cd pv-$VERSION/
./configure --prefix={{.INSTALL_DIR}}
./configure --prefix="{{.INSTALL_DIR}}"
\make -j $(nproc) install
dir: "{{.HOME}}/tmp"
env:
Expand All @@ -216,7 +216,7 @@ tasks:
- defer: rm -fr vifm-$VERSION/
- |
cd vifm-$VERSION/
./configure --prefix={{.INSTALL_DIR}}
./configure --prefix="{{.INSTALL_DIR}}"
\make -j $(nproc) install
dir: "{{.HOME}}/tmp"
env:
Expand Down

0 comments on commit 4a3cfca

Please sign in to comment.