Skip to content

Instantly share code, notes, and snippets.

@RenatoRosaFranco
Created September 22, 2023 21:24
Show Gist options
  • Save RenatoRosaFranco/160804fbba1b9a7712df0f5c0ea21288 to your computer and use it in GitHub Desktop.
Save RenatoRosaFranco/160804fbba1b9a7712df0f5c0ea21288 to your computer and use it in GitHub Desktop.
finder.sh for Makefile as prof
#!/bin/bash
if [[ -n $IS_ACTION && $IS_ACTION == 'Action' ]]; then
RUN_ALL='false';
else
RUN_ALL='true';
fi;
FINDER=$(find . -name test.sh | sort);
export FINDER
export RUN_ALL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment