aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/luarocks-upload.sh10
-rw-r--r--scripts/test-luarocks-install.sh4
2 files changed, 0 insertions, 14 deletions
diff --git a/scripts/luarocks-upload.sh b/scripts/luarocks-upload.sh
deleted file mode 100644
index 8c4ff1f4..00000000
--- a/scripts/luarocks-upload.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env bash
-
-# Expects the LUAROCKS_API_KEY secret to be set
-
-TMP_DIR=$(mktemp -d)
-MODREV=$(git describe --tags --always --first-parent | tr -d "v")
-DEST_ROCKSPEC="$TMP_DIR/nvim-lspconfig-$MODREV-1.rockspec"
-cp "nvim-lspconfig-scm-1.rockspec" "$DEST_ROCKSPEC"
-sed -i "s/= 'scm'/= '$MODREV'/g" "$DEST_ROCKSPEC"
-luarocks upload "$DEST_ROCKSPEC" --api-key="$LUAROCKS_API_KEY"
diff --git a/scripts/test-luarocks-install.sh b/scripts/test-luarocks-install.sh
deleted file mode 100644
index 8d8d3242..00000000
--- a/scripts/test-luarocks-install.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/env bash
-
-MODREV=$(git describe --tags --always --first-parent | tr -d "v")
-luarocks install "nvim-lspconfig" "$MODREV"