diff --git a/.gitignore b/.gitignore index ee2ff4f..11ac2cb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,4 @@ publish.sh Cargo.toml Cargo.lock target -bellande_rustinstaller.py scripts diff --git a/README.md b/README.md index 724c63a..d629ee1 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ - Environment variables - redirection support +# Usage of Bellande Rust Executable Builder +- https://github.com/Architecture-Mechanism/bellande_rust_executable +- ```bellande_rust_executable -d dependencies.txt -s src -m bellos.rs -o executable/bellos``` # Usage of Bellande Rust Importer - https://github.com/Architecture-Mechanism/bellande_importer diff --git a/bellos_scripts/basic_math.bellos b/bellos_scripts/basic_math.bellos index 32f590b..02c1db2 100644 --- a/bellos_scripts/basic_math.bellos +++ b/bellos_scripts/basic_math.bellos @@ -5,7 +5,7 @@ # Writing to a file echo "This is a test file" > test.txt -echo "Adding another line" >> test.txt +echo "Adding another line" > test.txt # Reading from a file echo "Contents of test.txt:" diff --git a/dependencies.txt b/dependencies.txt new file mode 100644 index 0000000..92f83a1 --- /dev/null +++ b/dependencies.txt @@ -0,0 +1,2 @@ +glob = "0.3.0" +tempfile = "3.2" diff --git a/executable/bellos b/executable/bellos index d1a313d..0cb6e31 100755 Binary files a/executable/bellos and b/executable/bellos differ diff --git a/make_rust_executable.sh b/make_rust_executable.sh new file mode 100755 index 0000000..c12e581 --- /dev/null +++ b/make_rust_executable.sh @@ -0,0 +1 @@ +bellande_rust_executable -d dependencies.txt -s src -m bellos.rs -o executable/bellos