Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions mill
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ elif [[ "$cache_dest" == *.zip ]]; then
fi
fi

# If cs is not a valid file, fall back to the `cs` command in PATH
if [ ! -f "$cs" ]; then
cs="$(command -v cs)"
fi

function to_bash_syntax {
local S
for S in "$@" ; do
Expand Down
Loading