Skip to content
This repository has been archived by the owner on May 2, 2018. It is now read-only.

Commit

Permalink
Fix marmelab#10 - make install-demo error on symbolic link
Browse files Browse the repository at this point in the history
  • Loading branch information
jygastaud committed Jul 29, 2016
1 parent 7034582 commit 08663af
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/ng-admin/composer.json
Expand Up @@ -32,8 +32,10 @@
},
"scripts": {
"post-install-cmd": [
"ln -s ../../vendor/marmelab/microrest/web/css web/css/microrest",
"ln -s ../../vendor/marmelab/microrest/web/js web/js/microrest"
"mkdir web/css",
"mkdir web/js",
"ln -s ../../web/css web/css/microrest",
"ln -s ../../web/js web/js/microrest"
],
"run": [
"echo 'Started web server on http://localhost:8888'",
Expand Down

0 comments on commit 08663af

Please sign in to comment.