54 lines
1.4 KiB
Bash
Executable File
54 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
url=$1
|
|
ver=$2
|
|
artifacts_dir=$3
|
|
|
|
die() {
|
|
(>&2 printf "%s\\n" "$1")
|
|
exit 2
|
|
}
|
|
|
|
[ -z $url ] && die "no url set"
|
|
[ -z $ver ] && die "no version set"
|
|
[ -z "${artifacts_dir}" ] && die "artifacts_dir not set"
|
|
[ -e "${artifacts_dir}" ] || die "artifacts_dir \"${artifacts_dir}\" does not exist"
|
|
|
|
cd "${artifacts_dir}"
|
|
|
|
sftp $url <<EOF
|
|
cd ghcup
|
|
|
|
mkdir ${ver}
|
|
cd ${ver}
|
|
put SHA256SUMS
|
|
put SHA256SUMS.sig
|
|
put aarch64-apple-darwin-ghcup-${ver}
|
|
put aarch64-apple-darwin-ghcup-${ver}.sig
|
|
put aarch64-apple-darwin-ghcup.plan.json
|
|
put aarch64-linux-ghcup-${ver}
|
|
put aarch64-linux-ghcup-${ver}.sig
|
|
put aarch64-linux-ghcup.plan.json
|
|
put armv7-linux-ghcup-${ver}
|
|
put armv7-linux-ghcup-${ver}.sig
|
|
put armv7-linux-ghcup.plan.json
|
|
put i386-linux-ghcup-${ver}
|
|
put i386-linux-ghcup-${ver}.sig
|
|
put i386-linux-ghcup.plan.json
|
|
put x86_64-apple-darwin-ghcup-${ver}
|
|
put x86_64-apple-darwin-ghcup-${ver}.sig
|
|
put x86_64-apple-darwin-ghcup.plan.json
|
|
put x86_64-portbld-freebsd-ghcup-${ver}
|
|
put x86_64-portbld-freebsd-ghcup-${ver}.sig
|
|
put x86_64-portbld-freebsd-ghcup.plan.json
|
|
put x86_64-linux-ghcup-${ver}
|
|
put x86_64-linux-ghcup-${ver}.sig
|
|
put x86_64-linux-ghcup.plan.json
|
|
put x86_64-mingw64-ghcup-${ver}.exe
|
|
put x86_64-mingw64-ghcup-${ver}.exe.sig
|
|
put x86_64-mingw64-ghcup.plan.json
|
|
EOF
|
|
|
|
curl -X PURGE https://downloads.haskell.org/~ghcup/${ver}/
|
|
curl -X PURGE https://downloads.haskell.org/ghcup/${ver}/
|