Skip to content

Commit

Permalink
cat
Browse files Browse the repository at this point in the history
  • Loading branch information
rodber committed Jan 24, 2024
1 parent cfdab06 commit 0d2666f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cat.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env bash

set -e

mkdir -p bin/macos/{arm64,x86_64}
mkdir -p bin/linux/{aarch64,x86_64}

cat micro/micro-macos-arm64.sfx wordle-cli.phar >bin/macos/arm64/wordle-cli
cat micro/micro-macos-x86_64.sfx wordle-cli.phar >bin/macos/x86_64/wordle-cli
cat micro/micro-linux-aarch64.sfx wordle-cli.phar >bin/linux/aarch64/wordle-cli
cat micro/micro-linux-x86_64.sfx wordle-cli.phar >bin/linux/x86_64/wordle-cli

chmod +x bin/macos/*/wordle-cli
chmod +x bin/linux/*/wordle-cli

0 comments on commit 0d2666f

Please sign in to comment.