Skip to content

Commit

Permalink
fix: source -> . (#119)
Browse files Browse the repository at this point in the history
* fix: source -> .

* chore: bump python ver
  • Loading branch information
rsyi authored Dec 23, 2020
1 parent 6b4fed9 commit c7c3b0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Fetching and rebasing local changes from github.");
let activate_path = filesystem::get_activate_filename();
let build_script_path = filesystem::get_build_script_filename();
let full_command = format!(
"source {} && {} {}",
". {} && {} {}",
activate_path, python_alias, build_script_path
);
let mut child = Command::new("sh").args(&["-c", &full_command]).spawn()?;
Expand Down
2 changes: 1 addition & 1 deletion pipelines/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name="whale-pipelines",
version="1.3.1",
version="1.3.2",
author="Robert Yi",
author_email="[email protected]",
description="A pared-down metadata scraper + SQL runner.",
Expand Down

0 comments on commit c7c3b0f

Please sign in to comment.