Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9a44da24b0b490209c1f7112c6efbcce636f8912
[simgrid.git] / buildtools / Cmake / chdir_run.sh
1 #! /bin/sh
2 # This script goes to the directory specified as first argument, and executes the rest of its arguments
3 # It ought to be a solution to specify the PWD of commands in CTest, but I didn't find it yet
4
5
6 cd $1
7 shift
8 exec "$@"