From f8df79d063ba7d16af3e7b7df8fb18ef5850769d Mon Sep 17 00:00:00 2001 From: Gordon Pedersen Date: Tue, 11 Jul 2023 12:46:32 +1000 Subject: [PATCH] Fixed some paths and added a short readme --- README.md | 9 +++++++++ package | 2 +- run | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..bc13bd2 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +dragonruby binaries, etc are in the `.dragonruby` folder + +To update dragonruby, use the following: +``` +git subtree add --prefix .dragonruby --squash +``` +(or just dump the files in the .dragonruby folder) + +Also, make sure to dump icons in `.dragonruby/dragonruby-ios-simulator.app/Assets.xcassets/AppIcon.appiconset/` and `.dragonruby/dragonruby-ios.app/Assets.xcassets/AppIcon.appiconset` (see the `.gitkeep` files in those folders for more info) \ No newline at end of file diff --git a/package b/package index c12d845..0b9ddb0 100644 --- a/package +++ b/package @@ -1,3 +1,3 @@ #!/bin/sh -cd ./.dragonruby +cd "`dirname "$0"`"/.dragonruby exec ./dragonruby-publish --only-package ../🕹️cube-tube \ No newline at end of file diff --git a/run b/run index 80a4cce..45e17d8 100755 --- a/run +++ b/run @@ -1,3 +1,3 @@ #!/bin/sh -cd .dragonruby +cd "`dirname "$0"`"/.dragonruby exec ./dragonruby ../🕹️cube-tube \ No newline at end of file