Skip to content

Commit

Permalink
update readme and fix install.sh bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yacn committed Jul 8, 2018
1 parent fd15834 commit 3d165e6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions README.md
Expand Up @@ -2,3 +2,24 @@

eopkg configuration files for installing Folding @ Home Client, Control, and Viewer
on Solus.

## install:

```sh
./install.sh
# runs:
for component in "client" "control" "viewer"; do
sudo eopkg bi --ignore-safety $component/pspec.xml
sudo eopkg it --ignore-safety $component/fah${component}*.eopkg
done
```

# uninstall:

```sh
./uninstall.sh
# runs:
for component in "client" "control" "viewer"; do
sudo eopkg remove fah$component
done
```
4 changes: 2 additions & 2 deletions install.sh
@@ -1,6 +1,6 @@
#!/bin/bash

for component in "client" "control" "viewer"; do
sudo eopkg bi --ignore-safety $component/fah${component}*.eopkg
sudo eopkg it --ignore-safety $component/fah${component}*.eopkg
sudo eopkg bi --ignore-safety $component/pspec.xml
sudo eopkg it --ignore-safety fah${component}*.eopkg
done

0 comments on commit 3d165e6

Please sign in to comment.