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

Commit

Permalink
Release 0.35
Browse files Browse the repository at this point in the history
  • Loading branch information
talwat committed May 12, 2022
1 parent a01d723 commit 4278155
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
- name: Run help command
run: ./indiepkg help

- name: Run env-add command
run: ./indiepkg env-add -y

- name: Run setup command
run: ./indiepkg setup -d

Expand Down
2 changes: 1 addition & 1 deletion input.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
)

const version = "0.35-alpha"
const version = "0.35"

var purge, debug, assumeYes, force, noDeps, ignoreRoot bool = false, false, false, false, false, false

Expand Down
4 changes: 1 addition & 3 deletions setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ func setup() {
}

func envAdd() {
confirm("y", "Are you sure you would like to add %s to $PATH? This will fix a lot of issues with packages not being found (y/n)", bolden(home+".local/bin"))

debug = true
confirm("y", "Are you sure you would like to add %s to several environment variables? This will fix a lot of issues with packages not being found (y/n)", bolden(home+".local"))

appendVarRc := func(varName string, path string) string {
textToAppend := "export " + varName + "=\"$HOME/" + path + ":$" + varName + "\"" + "\n"
Expand Down

0 comments on commit 4278155

Please sign in to comment.