Skip to content

Commit

Permalink
some progress
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiim committed Dec 7, 2023
1 parent b8f7c4e commit ad9ea33
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,6 @@ _deps

build/
ref/

# clang cache
.cache/
2 changes: 1 addition & 1 deletion include/venvtool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ class VenvTool {
* @brief deactivate an venv
*/
void venvRemove(std::string venvName);
};
};
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <iostream>
#include "venvtool.hpp"

int main() {
int main(int argn, ) {

}
}
2 changes: 1 addition & 1 deletion src/venvtool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void VenvTool::venvActivate(std::string venvName) {
std::string activateCMD = venvPath_ + venvName + "\\Scripts\\activate";
#else
std::string activateCMD = "source " + venvPath_ + venvName +\
"/bin/activate"
"/bin/activate";
#endif

std::system(activateCMD.c_str());
Expand Down

0 comments on commit ad9ea33

Please sign in to comment.