diff options
| author | Andrew A. de Laix <alain@lindenlab.com> | 2011-02-17 09:50:08 -0800 | 
|---|---|---|
| committer | Andrew A. de Laix <alain@lindenlab.com> | 2011-02-17 09:50:08 -0800 | 
| commit | e713da24e3a591ee91e52ccd45cfe1c05c5dd769 (patch) | |
| tree | 1aac321ccde08453459510784a33481f1badeab4 | |
| parent | 008938e37292cc8b66e19f2df3f745e9b178b86d (diff) | |
explicity call python scripts with python so they work on all platforms.
| -rwxr-xr-x | build.sh | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -106,7 +106,7 @@ eval '$build_'"$arch" || pass  # File no longer exists in code-sep branch, so let's make sure it exists in order to use it.  if test -f scripts/update_version_files.py ; then    begin_section UpdateVer -  scripts/update_version_files.py \ +  python scripts/update_version_files.py \            --channel="$viewer_channel" \            --server_channel="$server_channel" \            --revision=$revision \ @@ -117,7 +117,7 @@ fi  # Now retrieve the version for use in the version manager  # First three parts only, $revision will be appended automatically. -build_viewer_update_version_manager_version=`scripts/get_version.py --viewer-version | sed 's/\.[0-9]*$//'` +build_viewer_update_version_manager_version=`python scripts/get_version.py --viewer-version | sed 's/\.[0-9]*$//'`  export autobuild_dir="$here/../../../autobuild/bin/"  if [ -d "$autobuild_dir" ] | 
