Skip to content

Commit

Permalink
PUSH
Browse files Browse the repository at this point in the history
-> Build CLI
-> Add a arch
  • Loading branch information
NaysKutzu committed Oct 17, 2023
1 parent df36680 commit 2dbae51
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
Binary file added MythicalDash64
Binary file not shown.
Binary file added MythicalDashARM32
Binary file not shown.
Binary file added MythicalDashARM64
Binary file not shown.
17 changes: 17 additions & 0 deletions arch.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

arch=$(uname -m)

if [ "$arch" == "aarch64" ]; then
echo "Host architecture is arm64."
mv MythicalDashARM64 MythicalDash
elif [ "$arch" == "armv7l" ]; then
echo "Host architecture is arm32."
mv MythicalDashARM32 MythicalDash
elif [ "$arch" == "x86_64" ]; then
echo "Host architecture is amd64."
mv MythicalDash64 MythicalDash
else
echo "Unsupported architecture: $arch"
exit 1
fi

0 comments on commit 2dbae51

Please sign in to comment.