Skip to content

Commit

Permalink
chore: fix package script
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Apr 11, 2019
1 parent b23e7d3 commit 6ec0717
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion devtools/ci/script.sh
Expand Up @@ -35,7 +35,7 @@ if [ -n "$TRAVIS_TAG" -a -n "$GITHUB_TOKEN" -a -n "$REL_PKG" ]; then
mkdir "releases/$PKG_NAME"
mv target/release/ckb "releases/$PKG_NAME"
cp README.md CHANGELOG.md COPYING "releases/$PKG_NAME"
cp -R devtools/init/ "releases/$PKG_NAME"
cp -R devtools/init "releases/$PKG_NAME"
if [ -d docs ]; then
cp -R docs "releases/$PKG_NAME"
fi
Expand Down
2 changes: 1 addition & 1 deletion devtools/init/linux-systemd/README.md
Expand Up @@ -22,7 +22,7 @@ Setup the directories and generate config files for testnet.

```bash
sudo mkdir /var/lib/ckb
sudo /usr/local/bin/ckb init -C /var/lib/ckb --spec testnet --log stdout
sudo /usr/local/bin/ckb init -C /var/lib/ckb --spec testnet --log-to stdout
```

Setup the user and group and the appropriate ownership and permissions.
Expand Down
2 changes: 1 addition & 1 deletion devtools/init/linux-systemd/ckb.service
Expand Up @@ -9,7 +9,7 @@ User=ckb
Group=ckb
WorkingDirectory=/var/lib/ckb

ExecStart=/usr/local/bin/ckb
ExecStart=/usr/local/bin/ckb run
Restart=on-abnormal
KillMode=mixed
TimeoutStopSec=5s
Expand Down

0 comments on commit 6ec0717

Please sign in to comment.