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

Fix the dev env to not require another tool #22

Merged
merged 3 commits into from Dec 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/kubernetes-tool/utils/helm_parts/utils.ts
Expand Up @@ -15,7 +15,8 @@ limitations under the License.
*/

// Defines the mirror hostname.
let mirrorHostname = process.env.NODE_ENV === "development" ? "http://localhost:8001" : null
const useGitHttpMirrorFs = process.env.USE_GIT_HTTP_MIRROR_FS
const mirrorHostname = useGitHttpMirrorFs === "true" ? "http://localhost:8001" : null

// Imports needed stuff.
import GitHubFS from "../githubFs"
Expand Down