Skip to content

Commit

Permalink
Fix an issue in do.sh where the 'all' argument didn't work, e.g. for …
Browse files Browse the repository at this point in the history
…do.sh build all (solana-labs#299)
  • Loading branch information
dankelleher authored Aug 21, 2020
1 parent a7d2bc4 commit b355a95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion do.sh
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ fi
if [[ $2 == "all" ]]; then
# Perform operation on all projects
for project in */program*; do
if [[ -f "$project"Cargo.toml ]]; then
if [[ -f "$project"/Cargo.toml ]]; then
perform_action "$1" "${project%/}" ${@:3}
else
continue
Expand Down

0 comments on commit b355a95

Please sign in to comment.