omegga 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/templates/rust/setup.sh
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
|
|
3
3
|
# This script will be run when the plugin is installed...
|
|
4
|
+
if command -v cargo; then
|
|
5
|
+
cargo build --release
|
|
6
|
+
else
|
|
7
|
+
echo "WARNING: Rust is not installed. This plugin could not be built. It will not work unless it has a bundled binary."
|
|
8
|
+
fi
|