You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
358 B
Plaintext
17 lines
358 B
Plaintext
13 years ago
|
#!/bin/bash
|
||
|
|
||
|
while test "$PWD" != "/"; do
|
||
|
if test -f "$PWD/src/.gitmodules"; then
|
||
|
break
|
||
|
fi
|
||
|
cd ..
|
||
|
done
|
||
|
if ! test -f "$PWD/src/.gitmodules"; then
|
||
|
echo "Could not find the root of your checkout; aborting." 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
gclient_spec="solutions=[{'name':'src','url':None,'deps_file':'.DEPS.git'}]"
|
||
|
gclient runhooks --spec="$gclient_spec"
|
||
|
exit $?
|