mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fix sake path relative to vendor
This commit is contained in:
parent
68d99c579f
commit
924e2a714f
@ -8,7 +8,7 @@ has been added to assist in migration of legacy files.
|
|||||||
You can run this task on the command line:
|
You can run this task on the command line:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ ./framework/sake dev/tasks/MigrateFileTask
|
$ ./vendor/silverstripe/framework/sake dev/tasks/MigrateFileTask
|
||||||
```
|
```
|
||||||
|
|
||||||
This task will also support migration of existing File DataObjects to file versioning. Any
|
This task will also support migration of existing File DataObjects to file versioning. Any
|
||||||
|
@ -11,7 +11,7 @@ For example, to run a database rebuild from the command line, use this command:
|
|||||||
```bash
|
```bash
|
||||||
|
|
||||||
cd your-webroot/
|
cd your-webroot/
|
||||||
php vendor/bin/framework/cli-script.php dev/build
|
php vendor/silverstripe/framework/cli-script.php dev/build
|
||||||
```
|
```
|
||||||
|
|
||||||
<div class="notice">
|
<div class="notice">
|
||||||
@ -32,10 +32,10 @@ when running the command php -v, then you may not have php-cli installed so sake
|
|||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
`sake` can be invoked using `./framework/sake`. For easier access, copy the `sake` file into `/usr/bin/sake`.
|
`sake` can be invoked using `./vendor/silverstripe/framework/sake`. For easier access, copy the `sake` file into `/usr/bin/sake`.
|
||||||
```
|
```
|
||||||
cd your-webroot/
|
cd your-webroot/
|
||||||
sudo ./framework/sake installsake
|
sudo ./vendor/silverstripe/framework/sake installsake
|
||||||
```
|
```
|
||||||
<div class="warning">
|
<div class="warning">
|
||||||
This currently only works on UNIX like systems, not on Windows.
|
This currently only works on UNIX like systems, not on Windows.
|
||||||
@ -139,7 +139,7 @@ Parameters can be added to the command. All parameters will be available in `$_G
|
|||||||
```bash
|
```bash
|
||||||
|
|
||||||
cd your-webroot/
|
cd your-webroot/
|
||||||
php framework/cli-script.php myurl myparam=1 myotherparam=2
|
php vendor/silverstripe/framework/cli-script.php myurl myparam=1 myotherparam=2
|
||||||
```
|
```
|
||||||
|
|
||||||
Or if you're using `sake`
|
Or if you're using `sake`
|
||||||
|
Loading…
Reference in New Issue
Block a user