🔧 chore(app, update): import ags overrides from absolute directory, check if repo is already cloned before cloning

This commit is contained in:
retrozinndev
2025-10-26 16:52:43 -03:00
parent 25ee7a1ee3
commit 870ac64511
2 changed files with 26 additions and 19 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
// thanks Aylur!! // thanks Aylur!!
import "../node_modules/ags/lib/overrides"; import "/usr/share/ags/js/lib/overrides";
import "./config"; import "./config";
import { import {
PluginApps, PluginApps,
+9 -2
View File
@@ -68,16 +68,23 @@ Send_log warn "!! By running this, you assume total responsability for issues th
if [[ "$answer" == y ]] || [[ "$skip_prompts" ]]; then if [[ "$answer" == y ]] || [[ "$skip_prompts" ]]; then
if [[ "$is_standalone" ]]; then if [[ "$is_standalone" ]]; then
Send_log "The installer noticed that you're calling the script remotely" Send_log "The installer noticed that you're calling the script remotely"
rm -rf $repo_directory 2> /dev/null
Send_log "Cloning repository in \`$repo_directory\`..." Send_log "Cloning repository in \`$repo_directory\`..."
if [[ -d $repo_directory ]]; then
Send_log "repo is already cloned! let's just fetch the latest changes..."
git -C "$repo_directory" stash # if there are changes, let's just stash them
git -C "$repo_directory" fetch && git -C "$repo_directory" pull --rebase
git -C "$repo_directory" stash pop # pop changes back if there are any
else
git clone https://github.com/retrozinndev/colorshell.git "$repo_directory" git clone https://github.com/retrozinndev/colorshell.git "$repo_directory"
fi fi
fi
Ask "Nice! Update to latest stable version instead of unstable(latest commit)?" Ask "Nice! Update to latest stable version instead of unstable(latest commit)?"
if [[ -z "$skip_prompts" ]] && [[ "$answer" == y ]]; then if [[ -z "$skip_prompts" ]] && [[ "$answer" == y ]]; then
Send_log "fetching latest release from colorshell repository" Send_log "fetching latest release from colorshell repository"
latest_tag=`curl -s "$repo_api_url/releases" | jq -r '. | select(.[].prerelease == false) | .[0].tag_name'` # use `head -n1` because for some reason, github api shows the same release 3 times :'(
latest_tag=`curl -s "$repo_api_url/releases" | jq -r '. | select(.[].prerelease == false) | .[0].tag_name' | head -n1`
Send_log "Done fetching" Send_log "Done fetching"
Send_log "Checking out latest non-pre-release version: $latest_tag" Send_log "Checking out latest non-pre-release version: $latest_tag"