Browse code

Script to pull most recent upstream CV files, closing #229

Steffen Neumann authored on 09/09/2020 08:29:24
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
+set -x 
3
+cd src
4
+
5
+PWIZGITHUBPREFIX=https://raw.githubusercontent.com/ProteoWizard/pwiz/master
6
+
7
+CVFILES="pwiz/data/common/CVTranslator.cpp \
8
+  pwiz/data/common/CVTranslator.hpp \
9
+  pwiz/data/common/CVTranslatorTest.cpp \
10
+  pwiz/data/common/cv.cpp pwiz/data/common/cv.hpp \
11
+  pwiz/data/common/psi-ms.obo"
12
+        
13
+for F in $CVFILES ; do 
14
+  wget -O $F $PWIZGITHUBPREFIX/$F
15
+done