fix dist path for fruitvote
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Elizabeth Hunt 2024-03-09 21:53:37 -07:00
parent b30d8da939
commit 2cc4bd0663
Signed by: simponic
GPG Key ID: 52B3774857EB24B1
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ cp -r the-abstraction-engine/dist ../dist/public_html/the-abstraction-engine
mkdir -p ../dist/fruitvote
cd fruitvote
go build -o ../../dist/fruitvote/fruitvote
cp start.sh ../dist/fruitvote/start.sh
cp start.sh ../../dist/fruitvote/start.sh
cd ..
echo "finished building HTML"

View File

@ -4,7 +4,7 @@ class GoPage {
private $socket;
private $template;
public function __construct($page, $socket = "/home/lizzy/fruitvote/http.sock", $start_cmd="/home/simponic/fruitvote/start.sh", $template="../template.html") {
public function __construct($page, $socket = "/home/simponic/fruitvote/http.sock", $start_cmd="/home/simponic/fruitvote/start.sh", $template = "../template.html") {
$this->page = $page;
$this->socket = $socket;
$this->template = $template;