Skip to content

Commit 79048a9

Browse files
committed
GPII-1814: Moves Universal related tasks to separate batch file
1 parent 806355e commit 79048a9

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Vagrantfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ Vagrant.configure(2) do |config|
3737
config.vm.provision "shell", path: "provisioning/chocolatey-packages.bat"
3838
config.vm.provision "shell", path: "provisioning/npm-packages.bat"
3939
config.vm.provision "shell", path: "provisioning/build.bat"
40+
config.vm.provision "shell", path: "provisioning/universal.bat"
4041

4142
end

provisioning/build.bat

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
cd c:\vagrant
22
npm install
33

4-
mkdir c:\node_modules
5-
cd c:\node_modules
6-
git clone --depth 1 https://github.com/GPII/universal.git
7-
cd universal
8-
npm install
9-
npm install dedupe-infusion
10-
node -e "require('dedupe-infusion')()"

provisioning/universal.bat

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
mkdir c:\node_modules
2+
cd c:\node_modules
3+
git clone --depth 1 https://github.com/GPII/universal.git
4+
cd universal
5+
npm install
6+
npm install dedupe-infusion
7+
node -e "require('dedupe-infusion')()"

0 commit comments

Comments
 (0)