morio_bridge 0.1.1 → 0.1.3
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.
- checksums.yaml +4 -4
- data/bin/post-install.sh +12 -1
- data/morio_bridge.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f477ab2f932b4db901d05c72055bd8befe3b15476864d2cfa70cf40320dff77
|
4
|
+
data.tar.gz: bc7f9ce405f3c8ef79abcf76764ee5a6d4474e938050c7a41a0ef15ab0f7806b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e0f33c203312e6377b45e403a41f7e9f8ecdce41e6b889b682542c5298b03cd67d7dedb20454448a0278ed2fa55ae12993bc836ebf890520ba6c0bcaa3aaf50
|
7
|
+
data.tar.gz: 4fcc615513f55f015a2374701c6816cad4bf9f0394ea0e58c814b65d582d345b6a79c54608852ca376294968deb8403140049a9d7dd11e91747a81c9b6088191
|
data/bin/post-install.sh
CHANGED
@@ -42,8 +42,19 @@ PLATFORM="$2"
|
|
42
42
|
ARCH="$3"
|
43
43
|
OUTPUT=$HOME/.morio/bin/bridge_server.js
|
44
44
|
|
45
|
+
# show the current directory
|
46
|
+
echo "current directory: $(pwd)"
|
45
47
|
|
46
|
-
|
48
|
+
# list the folders and files in the current directory
|
49
|
+
echo "current directory contents:"
|
50
|
+
ls -la
|
51
|
+
|
52
|
+
# list the folders and files in the parent directory
|
53
|
+
echo "parent directory contents:"
|
54
|
+
ls -la ..
|
55
|
+
|
56
|
+
|
57
|
+
cd ../server
|
47
58
|
|
48
59
|
bun install
|
49
60
|
bun build --target=bun index.ts --outfile "$OUTPUT"
|
data/morio_bridge.gemspec
CHANGED