mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 01:02:24 +01:00
10 lines
168 B
Bash
Executable File
10 lines
168 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
sudo service ssh start
|
|
|
|
eval `ssh-agent`
|
|
ssh-add
|
|
ssh-keyscan -t rsa localhost > ~/.ssh/known_hosts
|
|
|
|
cd ~/deployer && vendor/phpunit/phpunit/phpunit $@
|