Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #45 from everettraven/other/pre-release-updates
Browse files Browse the repository at this point in the history
minor changes
  • Loading branch information
everettraven authored Nov 14, 2021
2 parents 4854bd4 + 847b8c7 commit 20a56c8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config.hcl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
base_dir="~/.packageless/"
start_port=3000
port_increment=1
alias=true
alias=false
repository_host="https://raw.githubusercontent.com/everettraven/packageless-pims/main/pims/"
pims_config_dir="pims_config/"
pims_dir = "pims/"
3 changes: 3 additions & 0 deletions unixInstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,8 @@ else
curl -L -o ~/bin/packageless https://github.com/everettraven/packageless/releases/latest/download/packageless-linux
fi

echo "Downloading packageless configuration file"
curl -L -o ~/.packageless/config.hcl https://github.com/everettraven/packageless/releases/latest/download/config.hcl

echo "Adding packageless to PATH by adding to: ~/."$shell"rc"
echo "export PATH=\$PATH:~/bin/packageless" >> $HOME"/."$shell"rc"
4 changes: 4 additions & 0 deletions windowsInstaller.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Write-Output "Downloading the executable"

Invoke-WebRequest https://github.com/everettraven/packageless/releases/latest/download/packageless-windows -OutFile $HOME\bin\packageless.exe

Write-Output "Downloading packageless configuration file"

Invoke-WebRequest https://github.com/everettraven/packageless/releases/latest/download/config.hcl -OutFile $HOME\.packageless\config.hcl

Write-Output "Adding packageless to PATH"

setx PATH "%PATH%;$HOME\bin\packageless"

0 comments on commit 20a56c8

Please sign in to comment.