Skip to content
Snippets Groups Projects
Unverified Commit 259091e2 authored by Javier Neira's avatar Javier Neira Committed by GitHub
Browse files

Avoid error if var is unset

parent ddd45298
No related branches found
No related tags found
No related merge requests found
Pipeline #41361 failed
...@@ -30,7 +30,7 @@ export BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG=yes ...@@ -30,7 +30,7 @@ export BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG=yes
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh
if [[ -n "$LOCAL_CABAL_PROJECT" ]]; then if [[ -n "${LOCAL_CABAL_PROJECT-}" ]]; then
run cp "$LOCAL_CABAL_PROJECT" cabal.project.local run cp "$LOCAL_CABAL_PROJECT" cabal.project.local
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment