You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Check that the file exists before performing actions on it
73
+
if [ -s all_mutants.txt ]; then
74
+
echo "The file containing mutants is missing or empty!"
75
+
exit 1
76
+
fi
77
+
72
78
# Split the differences from git into 2 parts, big packages ('stacks-node' and 'stackslib') and small packages (all others) and put them into separate files
0 commit comments