Skip to content

Commit

Permalink
Add 64bits linux binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
obynio committed Aug 1, 2023
1 parent c0b0c2d commit ccee68c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
Binary file added bin/kobopatch-linux-64bit
Binary file not shown.
15 changes: 12 additions & 3 deletions kobopatch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,17 @@ case `uname -s` in
*)
echo "Unsupported architecture"
esac
;;
;;
Linux)
case `uname -m` in
x86_64)
./bin/kobopatch-linux-64bit
;;
*)
echo "Unsupported architecture"
esac
;;
*)
echo "Unsupported system"
;;
esac
;;
esac

0 comments on commit ccee68c

Please sign in to comment.