diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-07-05 12:09:04 -0700 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-07-05 12:09:48 -0700 |
| commit | 3527e2f9f1ad7bb7fdf78a9411f7b101c6d41415 (patch) | |
| tree | c78f98d5b4e92e32d52da495d7e1689a8731ad6b /mp/src/devtools | |
| parent | Update text & binary attributes. (diff) | |
| download | source-sdk-2013-3527e2f9f1ad7bb7fdf78a9411f7b101c6d41415.tar.xz source-sdk-2013-3527e2f9f1ad7bb7fdf78a9411f7b101c6d41415.zip | |
Normalize line endings
Fixes issue #75.
Diffstat (limited to 'mp/src/devtools')
| -rwxr-xr-x | mp/src/devtools/bin/vpc | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/mp/src/devtools/bin/vpc b/mp/src/devtools/bin/vpc index 2992aed4..3874f82c 100755 --- a/mp/src/devtools/bin/vpc +++ b/mp/src/devtools/bin/vpc @@ -1,28 +1,28 @@ -#!/bin/bash
-
-OS=`uname`
-SCRIPTPATH=`dirname $0`
-FORCEARG=""
-
-case $OS in
-"Darwin")
- BINNAME=vpc_osx
- ;;
-"Linux")
- BINNAME=vpc_linux
- ;;
-*)
- echo "Couldn't find appropriate VPC binary, fix the script."
- exit -1
- ;;
-esac
-
-
-if [ $OS == "Darwin" ]; then
- $SCRIPTPATH/$BINNAME $@
-elif [ $OS == "Linux" ]; then
- $SCRIPTPATH/$BINNAME $@
-else
- echo "Couldn't find appropriate VPC binary, fix the script."
- exit -1
-fi
+#!/bin/bash + +OS=`uname` +SCRIPTPATH=`dirname $0` +FORCEARG="" + +case $OS in +"Darwin") + BINNAME=vpc_osx + ;; +"Linux") + BINNAME=vpc_linux + ;; +*) + echo "Couldn't find appropriate VPC binary, fix the script." + exit -1 + ;; +esac + + +if [ $OS == "Darwin" ]; then + $SCRIPTPATH/$BINNAME $@ +elif [ $OS == "Linux" ]; then + $SCRIPTPATH/$BINNAME $@ +else + echo "Couldn't find appropriate VPC binary, fix the script." + exit -1 +fi |