From fc99e7e261db1ecadf71c735fc0e1c79d2cc64a9 Mon Sep 17 00:00:00 2001 From: AllanCapistrano Date: Sat, 29 Jul 2023 16:04:51 -0300 Subject: [PATCH] chore: add step to rename file --- scripts/install-termux.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/install-termux.sh b/scripts/install-termux.sh index f49c807..4b07056 100644 --- a/scripts/install-termux.sh +++ b/scripts/install-termux.sh @@ -1,12 +1,15 @@ #!/bin/bash # Downloading the necessary files. -curl -LO https://github.com/AllanCapistrano/gbc/releases/download/v1.2.0/gbc +curl -LO https://github.com/AllanCapistrano/gbc/releases/download/v1.2.0/gbc-arm curl -O https://raw.githubusercontent.com/AllanCapistrano/gbc/main/config/gbc.conf # Creating the config directory for gbc. mkdir -p $HOME/.config/gbc +# Renaming file +mv gbc-arm gbc + # Moving the CLI and settings file. mv gbc $PATH mv gbc.conf $HOME/.config/gbc