[Scummvm-git-logs] scummvm-web master -> 13f476d1325c271f26396f1c02489784b966aec4

criezy criezy at scummvm.org
Thu Apr 25 23:12:56 CEST 2019


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .

Summary:
372646c738 WEB: Fix incorrect command to create directories when running composer
13f476d132 WEB: Add Glue requirement to README


Commit: 372646c7383096c5e90162fd4d0b6de672579969
    https://github.com/scummvm/scummvm-web/commit/372646c7383096c5e90162fd4d0b6de672579969
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2019-04-25T22:09:48+01:00

Commit Message:
WEB: Fix incorrect command to create directories when running composer

The 'mkdir foo -p' command actually seems to work on Debian, but on
macOS, and possibly others, this created both a 'foo' and '-p'
directory, and failed if either already existed. Using 'mkdir -p foo'
instead works everywhere.

Changed paths:
    composer.json


diff --git a/composer.json b/composer.json
index 118318c..b452e31 100644
--- a/composer.json
+++ b/composer.json
@@ -35,9 +35,9 @@
         "if NOT EXIST vendor\\smarty\\smarty\\libs\\template_c mkdir vendor\\smarty\\smarty\\libs\\template_c"
       ],
       "build": [
-        "mkdir css -p",
+        "mkdir -p css",
         "@build-common",
-        "mkdir vendor/smarty/smarty/libs/template_c -p"
+        "mkdir -p vendor/smarty/smarty/libs/template_c"
       ],
       "run": [
         "php -S localhost:8000"


Commit: 13f476d1325c271f26396f1c02489784b966aec4
    https://github.com/scummvm/scummvm-web/commit/13f476d1325c271f26396f1c02489784b966aec4
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2019-04-25T22:12:23+01:00

Commit Message:
WEB: Add Glue requirement to README

Changed paths:
    README.md


diff --git a/README.md b/README.md
index 2c19df0..aae3bb6 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,7 @@ Before installing please make sure you have the following installed:
 * [Python & pip](https://www.python.org/) (2.7.9+/3.4+)
 * [Node.js & npm](https://nodejs.org/)
 * [Git](https://git-scm.com/)
+* [Glue](https://glue.readthedocs.io/en/latest/installation.html)
 
 ### Installing
 





More information about the Scummvm-git-logs mailing list