We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66f5243 commit 62d96f3Copy full SHA for 62d96f3
1 file changed
bash_dao.go
@@ -53,6 +53,12 @@ type (
53
)
54
55
func init() {
56
+ // For nitrous store the settings in .bash_profile since autoparts overrides
57
+ // the settings
58
+ if _, err := os.Stat(filepath.Join(os.Getenv("HOME"), ".nitrousboxrc.sample")); err == nil {
59
+ bashShell.configFileName = filepath.Join(os.Getenv("HOME"), ".bash_profile")
60
+ }
61
+
62
RegisterDAO(1000, func() bool {
63
pid := os.Getpid()
64
for pid > 0 {
0 commit comments