build: fix some issues on Windows platforms

Closes #9450
This commit is contained in:
Marc Laval
2016-06-21 00:25:55 +02:00
parent a5f2e205ef
commit 9decc3d823
8 changed files with 44 additions and 8 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
cd `dirname $0`
while read PACKAGE
do
DESTDIR=./../../modules/\@angular/${PACKAGE}/src
mv ${DESTDIR}/facade ${DESTDIR}/facade.old
cmd <<< "mklink \"..\\..\\modules\\\@angular\\"${PACKAGE}"\\src\\facade\" \"..\\..\\facade\\src\\\""
done < packages.txt
+9
View File
@@ -0,0 +1,9 @@
common
compiler
core
forms
http
platform-browser
platform-browser-dynamic
platform-server
router-deprecated
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
cd `dirname $0`
while read PACKAGE
do
DESTDIR=./../../modules/\@angular/${PACKAGE}/src
rm ${DESTDIR}/facade
mv ${DESTDIR}/facade.old ${DESTDIR}/facade
done < packages.txt