Skip to content

Commit

Permalink
Merge pull request #196 from jstasiak/callvpc
Browse files Browse the repository at this point in the history
Make create*projects scripts work independently of current directory
  • Loading branch information
JoeLudwig committed Dec 3, 2013
2 parents 80cf6f0 + bd9d3e6 commit 2688681
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion mp/src/createallprojects
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

pushd `dirname $0`
devtools/bin/vpc /hl2mp +everything /mksln everything

popd
3 changes: 2 additions & 1 deletion mp/src/creategameprojects
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

pushd `dirname $0`
devtools/bin/vpc /hl2mp +game /mksln games

popd
3 changes: 2 additions & 1 deletion sp/src/createallprojects
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

pushd `dirname $0`
devtools/bin/vpc /hl2 /episodic +everything /mksln everything

popd
3 changes: 2 additions & 1 deletion sp/src/creategameprojects
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

pushd `dirname $0`
devtools/bin/vpc /hl2 /episodic +game /mksln games

popd

0 comments on commit 2688681

Please sign in to comment.