mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2024-12-26 19:09:06 +01:00
Fix issue with checkout.
This commit is contained in:
parent
357534f2b3
commit
c811a4e532
@ -1,10 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
rm -rf /var/www/symfony/* /var/www/symfony/.*
|
||||
git clone https://github.com/ClusterCockpit/ClusterCockpit.git /var/www/symfony/.
|
||||
# git clone https://github.com/ClusterCockpit/ClusterCockpit.git /var/www/symfony/.
|
||||
|
||||
cd /var/www/symfony
|
||||
git checkout feature-47-introduce-graphql-api
|
||||
composer install --no-dev --optimize-autoloader
|
||||
|
||||
git init
|
||||
git remote add origin https://github.com/ClusterCockpit/ClusterCockpit.git
|
||||
git fetch
|
||||
git checkout feature-47-introduce-graphql-api
|
||||
composer install --no-dev --no-progress --optimize-autoloader
|
||||
yarn install
|
||||
yarn encore production
|
||||
# bin/console doc:mig:mig --no-interaction
|
||||
|
Loading…
Reference in New Issue
Block a user