mirror of
https://github.com/blacktop/ipsw.git
synced 2026-05-08 12:22:26 +00:00
11 lines
298 B
Bash
Executable File
11 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
rm -rf completions
|
|
mkdir -p completions/{ipsw,ipswd}
|
|
for sh in bash zsh fish powershell; do
|
|
go run ./cmd/ipsw/main.go completion "$sh" >"completions/ipsw/_$sh"
|
|
done
|
|
for sh in bash zsh fish powershell; do
|
|
go run ./cmd/ipswd/main.go completion "$sh" >"completions/ipswd/_$sh"
|
|
done
|