Browse Source

fix(devops): fix permission denied error

give execution permission to student files to prevent permission denied on execution
pull/1914/head
Michele Sessa 1 year ago committed by Michele
parent
commit
de9d5caeb7
  1. 2
      sh/tests/entrypoint.sh

2
sh/tests/entrypoint.sh

@ -6,6 +6,8 @@ cp -r /app .
cp -a student app
cd app
chmod +x "./student/${EXERCISE}.sh"
if ! test -f "${EXERCISE}_test.sh"; then
echo "No test file found for the exercise : $EXERCISE"
exit 1

Loading…
Cancel
Save