From 533d5bb58f2d6a99ed61a45048319dafed555a3e Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Mon, 18 Oct 2021 21:42:30 -0500 Subject: [PATCH] forgot I need to include html files --- .gitignore | 1 - modules/ouit/index.html | 29 +++++++++++++++++++++++++++++ modules/ouit/ouit_build.sh | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 modules/ouit/index.html diff --git a/.gitignore b/.gitignore index 327f4936..87b9b022 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ *.o tags *.wasm -*.html session.vim *.sublime-project *.sublime-workspace diff --git a/modules/ouit/index.html b/modules/ouit/index.html new file mode 100644 index 00000000..8343ee87 --- /dev/null +++ b/modules/ouit/index.html @@ -0,0 +1,29 @@ + + + + OUIT + + + + + + + + + + + + + + This browser does not support the Canvas API. + + diff --git a/modules/ouit/ouit_build.sh b/modules/ouit/ouit_build.sh index 95301910..efa25c3b 100755 --- a/modules/ouit/ouit_build.sh +++ b/modules/ouit/ouit_build.sh @@ -1,6 +1,6 @@ #!/bin/sh -ONYX_FOLDER="$HOME/dev/c/onyx" +[ -z "$ONYX_FOLDER" ] && ONYX_FOLDER="$HOME/dev/c/onyx" [ ! -s "./modules" ] && ln -s "$ONYX_FOLDER/modules" $(pwd)/modules [ ! -s "./js" ] && ln -s "$ONYX_FOLDER/bin" $(pwd)/js -- 2.25.1