Skip to content

Commit

Permalink
fixed final output count (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
hariteja-jajula authored May 17, 2024
1 parent d373e47 commit eb6337c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guide.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ echo -e "Mounting local host directory $HOST_DATA_PATH to /ngen/ngen/data within
docker run --rm -it -v "$HOST_DATA_PATH:/ngen/ngen/data" "$IMAGE_NAME" /ngen/ngen/data/

# Final output count
Final_Outputs_Count=$(ls "$HOST_DATA_PATH/outputs/*/*" | wc -l)
Final_Outputs_Count=$(find "$HOST_DATA_PATH/outputs/" -type f | wc -l)
echo -e "$Final_Outputs_Count new outputs created."
echo -e "Any copied files can be found here: $HOST_DATA_PATH/outputs"

Expand Down

0 comments on commit eb6337c

Please sign in to comment.