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