From dfa474d41f8112541e4d26a1753d8f8c1e8c14b8 Mon Sep 17 00:00:00 2001 From: Gagan Deep Date: Wed, 25 Sep 2024 21:38:49 +0530 Subject: [PATCH] [chores] Fixed nixio development dependency --- install-dev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-dev.sh b/install-dev.sh index 9d1f859..1e2e2fe 100755 --- a/install-dev.sh +++ b/install-dev.sh @@ -16,7 +16,7 @@ git clone https://git.openwrt.org/project/libubox.git --depth=1 git clone https://git.openwrt.org/project/uci.git --depth=1 { cd uci && cmake . && make install && cd ..; } || { echo 'Installing uci failed!' && exit 1; } # install nixio -luarocks install https://raw.githubusercontent.com/openwisp/nixio/master/nixio-scm-0.rockspec +luarocks install https://raw.githubusercontent.com/Neopallium/nixio/refs/heads/master/rockspecs/nixio-scm-0.rockspec # install luaformatter git clone --recurse-submodules https://github.com/Koihik/LuaFormatter.git { cd LuaFormatter && cmake . && make install && cd ..; } || { echo 'Installing LuaFormatter failed' && exit 1; }