Skip to content

Commit

Permalink
uses ehallein repository
Browse files Browse the repository at this point in the history
  • Loading branch information
ehallein committed Jan 22, 2024
1 parent 5c91e09 commit 5a793f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions install.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@REM ### Windows install commands for the EcoAssist application https://github.com/PetervanLunteren/EcoAssist
@REM ### Peter van Lunteren, 13 Dec 2023 (latest edit)
@REM ### Windows install commands for the EcoAssist application https://github.com/ehallein/EcoAssist
@REM ### Evan Hallein, 22 Jan 2024 (latest edit)

@REM set echo settings
echo off
Expand Down Expand Up @@ -235,7 +235,7 @@ if exist "%LOCATION_ECOASSIST_FILES%\EcoAssist\" (
) else (
echo Dir EcoAssist does not exists! Clone repo... | wtee -a "%LOG_FILE%"
cd "%LOCATION_ECOASSIST_FILES%" || ( echo "Could not change directory to EcoAssist_files. Command could not be run. Installation was terminated. Copy-paste this output and send it to [email protected] for further support." | wtee -a "%LOG_FILE%" & cmd /k & exit )
"%EA_GIT_EXE%" clone --depth 1 https://github.com/PetervanLunteren/EcoAssist.git
"%EA_GIT_EXE%" clone --depth 1 https://github.com/ehallein/EcoAssist.git
@REM check the size of the folder
dir "%LOCATION_ECOASSIST_FILES%\EcoAssist" | wtee -a "%LOG_FILE%"
)
Expand Down
6 changes: 3 additions & 3 deletions install.command
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

### OSx and Linux install commands for the EcoAssist application https://github.com/PetervanLunteren/EcoAssist
### Peter van Lunteren, 24 Nov 2023 (latest edit)
### OSx and Linux install commands for the EcoAssist application https://github.com/ehallein/EcoAssist
### Evan Hallein, 22 Jan 2024 (latest edit)

# check the OS and set var
if [ "$(uname)" == "Darwin" ]; then
Expand Down Expand Up @@ -138,7 +138,7 @@ if [ -d "$ECO" ]; then
echo "Dir ${ECO} already exists! Skipping this step." 2>&1 | tee -a "$LOG_FILE"
else
echo "Dir ${ECO} does not exist! Clone repo..." 2>&1 | tee -a "$LOG_FILE"
git clone --progress --depth 1 https://github.com/PetervanLunteren/EcoAssist.git 2>&1 | tee -a "$LOG_FILE"
git clone --progress --depth 1 https://github.com/ehallein/EcoAssist.git 2>&1 | tee -a "$LOG_FILE"
# move the open.cmd two dirs up and give it an icon
if [ "$PLATFORM" = "Apple Silicon Mac" ] || [ "$PLATFORM" = "Intel Mac" ]; then
FILE="$LOCATION_ECOASSIST_FILES/EcoAssist/open.command"
Expand Down

0 comments on commit 5a793f5

Please sign in to comment.