Update settings for linux
							parent
							
								
									61acf0b92a
								
							
						
					
					
						commit
						f48f232119
					
				@ -1,2 +1,2 @@
 | 
				
			|||||||
# shellcheck disable=SC2034
 | 
					# shellcheck disable=SC2034
 | 
				
			||||||
PATH="${PATH}:${HOME}/.rbenv/shims:/usr/local/opt/mysql-client/bin:${HOME}/google-cloud-sdk/bin"
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,4 @@
 | 
				
			|||||||
# shellcheck disable=SC2034
 | 
					# shellcheck disable=SC2034
 | 
				
			||||||
GOPRIVATE=github.com/HelloTech
 | 
					GOPRIVATE=github.com/HelloTech
 | 
				
			||||||
GO_TEST=gotest
 | 
					GO_TEST=gotest
 | 
				
			||||||
PATH="${PATH}:${HOME}/.rbenv/shims:/usr/local/opt/mysql-client/bin:${HOME}/google-cloud-sdk/bin"
 | 
					 | 
				
			||||||
PULUMI_SKIP_UPDATE_CHECK=true
 | 
					PULUMI_SKIP_UPDATE_CHECK=true
 | 
				
			||||||
 | 
				
			|||||||
@ -0,0 +1,14 @@
 | 
				
			|||||||
 | 
					#!/usr/bin/env bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					_add_path () {
 | 
				
			||||||
 | 
					    if [ ! -d "$1" ]; then
 | 
				
			||||||
 | 
					        return
 | 
				
			||||||
 | 
					    fi
 | 
				
			||||||
 | 
					    PATH="${PATH}:$1"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					_add_path "${HOME}/.rbenv/shims"
 | 
				
			||||||
 | 
					_add_path "/usr/local/opt/mysql-client/bin"
 | 
				
			||||||
 | 
					_add_path "${HOME}/google-cloud-sdk/bin"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					unset _add_path
 | 
				
			||||||
					Loading…
					
					
				
		Reference in New Issue