summaryrefslogtreecommitdiff
path: root/bin/vc12convert.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/vc12convert.sh')
-rwxr-xr-xbin/vc12convert.sh17
1 files changed, 2 insertions, 15 deletions
diff --git a/bin/vc12convert.sh b/bin/vc12convert.sh
index 752ed2a..faa4b0f 100755
--- a/bin/vc12convert.sh
+++ b/bin/vc12convert.sh
@@ -2,9 +2,6 @@
# Convert VC11 project files to VC12.
#
-# -i <ver> encoded input VC version, '11.0' by default
-# -o <ver> encoded output VC version, '12.0' by default
-#
trap 'exit 1' ERR
@@ -14,21 +11,11 @@ function error ()
}
wd=`pwd`
-vi=11.0
-vo=12.0
+vi=vc11
+vo=vc12
while [ $# -gt 0 ]; do
case $1 in
- -i)
- shift
- vi=$1
- shift
- ;;
- -o)
- shift
- vo=$1
- shift
- ;;
*)
error "unknown option: $1"
exit 1