How to resolve this error-
mkdir submission
cd submission_src; zip -r …/submission/submission.zip ./*
The system cannot find the path specified.
make: *** [pack-submission] Error 1
and if i manually create submission.zip it gives-
mkdir submission
A subdirectory or file submission already exists.
make: *** [_submission_write_perms] Error 1
cd submission_src; zip -r …/submission/submission.zip ./*
Is this a typo? There looks to be an extra dot in what should be ../submission/submission.zip. Also the -p in mkdir -p submission/ is important and the reason you’re seeing that error.
mkdir -p submission/
The syntax of the command is incorrect.
make: *** [pack-benchmark] Error 1
And if i remove ‘-p’ and ‘/’ it gives this error-
mkdir submission
cd example_benchmark; zip -r …/submission/submission.zip ./*
The system cannot find the path specified.
make: *** [pack-benchmark] Error 1