git.wincent.com
/
docvim.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
754c89e
)
Remove useless script
author
Greg Hurrell <greg@hurrell.net>
Sun, 12 Jun 2016 06:07:17 +0000
(23:07 -0700)
committer
Greg Hurrell <greg@hurrell.net>
Sun, 12 Jun 2016 06:07:17 +0000
(23:07 -0700)
Those tests don't exist any more, so no need to update them.
bin/update-integration-tests
[deleted file]
patch
|
blob
|
history
diff --git
a/bin/update-integration-tests
b/bin/update-integration-tests
deleted file mode 100755
(executable)
index
78fada4
..0000000
--- a/
bin/update-integration-tests
+++ /dev/null
@@
-1,14
+0,0 @@
-#!/bin/sh
-
-for TYPE in tests/fixtures/*; do
- if [ $TYPE != "tests/fixtures/shared" ]; then
- (
- echo "In $TYPE:"
- cd $TYPE
- for TEST in ../shared/integration-*; do
- echo "Linking: $TEST"
- ln -sf $TEST
- done
- )
- fi
-done