Commit 5a685867 by Mislav Marohnić

Remove non-portable `ln -h` flag

Works on OS X but fails on CI.
parent 899db671
...@@ -21,7 +21,7 @@ stub() { ...@@ -21,7 +21,7 @@ stub() {
export "${prefix}_STUB_END"= export "${prefix}_STUB_END"=
mkdir -p "${TMP}/bin" mkdir -p "${TMP}/bin"
ln -shf "${BATS_TEST_DIRNAME}/stubs/stub" "${TMP}/bin/${program}" ln -sf "${BATS_TEST_DIRNAME}/stubs/stub" "${TMP}/bin/${program}"
touch "${TMP}/${program}-stub-plan" touch "${TMP}/${program}-stub-plan"
for arg in "$@"; do printf "%s\n" "$arg" >> "${TMP}/${program}-stub-plan"; done for arg in "$@"; do printf "%s\n" "$arg" >> "${TMP}/${program}-stub-plan"; done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment