diff --git a/build-vendor.php b/build-vendor.php index 4d5b81abb..8ce968286 100644 --- a/build-vendor.php +++ b/build-vendor.php @@ -97,7 +97,6 @@ $jsFiles = array ( "workflow/public_html/lib/pmUI/pmui.min.js", "workflow/public_html/lib/mafe/mafe.min.js", "workflow/public_html/lib/mafe/designer.min.js", - "workflow/public_html/lib/js/tiny_mce.min.js", "gulliver/js/tinymce/jscripts/tiny_mce/tiny_mce.js", "gulliver/js/tinymce/jscripts/tiny_mce/plugins/pmGrids/editor_plugin.js", diff --git a/update b/update new file mode 100755 index 000000000..62821f1a9 --- /dev/null +++ b/update @@ -0,0 +1,26 @@ + +echo "
" > temp.txt
+
+git pull
+git log -n 20 --relative-date --graph --format=short >> temp.txt
+
+
+
+cd vendor/colosa/pmUI
+echo "" >> ../../../temp.txt
+git pull
+git log -n 20 --relative-date --graph --format=short >> ../../../temp.txt
+
+cd ../MichelangeloFE
+echo "" >> ../../../temp.txt
+git pull
+git log -n 20 --relative-date --graph --format=short >> ../../../temp.txt
+
+
+cd ../../../
+echo "" >> temp.txt
+php build-vendor.php >> temp.txt
+
+sed ':a;N;$!ba;s/\n/
/g' temp.txt > workflow/public_html/build-log.html
+
+echo "update executed succesfully, check the log in http:///build-log.html "