-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added support for environment variables in leiu of options #105
Open
clay-curry
wants to merge
1
commit into
marler8997:master
Choose a base branch
from
clay-curry:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,8 +80,15 @@ fn getHomeDir() ![]const u8 { | |
} | ||
|
||
fn allocInstallDirString(allocator: Allocator) ![]const u8 { | ||
// TODO: maybe support ZIG_INSTALL_DIR environment variable? | ||
// TODO: maybe support a file on the filesystem to configure install dir? | ||
if(std.os.getenv("ZIG_INSTALL_DIR")) |install_dir| { | ||
if (std.fs.path.isAbsolute(install_dir)) { | ||
return install_dir; | ||
} else { | ||
std.log.err("the $ZIG_INSTALL_DIR environment variable '{s}' is not an absolute path", .{install_dir}); | ||
return error.BadInstallDirEnvironmentVariable; | ||
} | ||
} | ||
if (builtin.os.tag == .windows) { | ||
const self_exe_dir = try std.fs.selfExeDirPathAlloc(allocator); | ||
defer allocator.free(self_exe_dir); | ||
|
@@ -92,7 +99,7 @@ fn allocInstallDirString(allocator: Allocator) ![]const u8 { | |
std.log.err("$HOME environment variable '{s}' is not an absolute path", .{home}); | ||
return error.BadHomeEnvironmentVariable; | ||
} | ||
return std.fs.path.join(allocator, &[_][]const u8{ home, "zig" }); | ||
return std.fs.path.join(allocator, &[_][]const u8{ home, "zig" }); | ||
} | ||
const GetInstallDirOptions = struct { | ||
create: bool, | ||
|
@@ -119,6 +126,9 @@ fn getInstallDir(allocator: Allocator, options: GetInstallDirOptions) ![]const u | |
|
||
fn makeZigPathLinkString(allocator: Allocator) ![]const u8 { | ||
if (global_optional_path_link) |path| return path; | ||
if (std.os.getenv("ZIG_PATH_LINK")) |path_link| { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here!! |
||
return try std.fs.path.join(allocator, &[_][]const u8{ path_link, comptime "zig" ++ builtin.target.exeFileExt() }); | ||
} | ||
|
||
const zigup_dir = try std.fs.selfExeDirPathAlloc(allocator); | ||
defer allocator.free(zigup_dir); | ||
|
@@ -154,10 +164,12 @@ fn help() void { | |
\\ zigup fetch-index download and print the download index json | ||
\\ | ||
\\Common Options: | ||
\\ --install-dir DIR override the default install location | ||
\\ --install-dir DIR override the default install location. For convenience, this | ||
\\ option can be set with the ZIG_INSTALL_DIR environment variable. | ||
\\ --path-link PATH path to the `zig` symlink that points to the default compiler | ||
\\ this will typically be a file path within a PATH directory so | ||
\\ that the user can just run `zig` | ||
\\ that the user can just run `zig`. For convenience, this option | ||
\\ can be set with the ZIG_PATH_LINK environment variable. | ||
\\ | ||
) catch unreachable; | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
std.os.getenv
not working on Windows, buttry std.process.getEnvVarOwned
is cross-platform.