We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f31e030 commit a81d2efCopy full SHA for a81d2ef
2 files changed
scripts/common.ps1
@@ -20,13 +20,13 @@ function Initialize-VirtualEnvironment {
20
Write-Host "Creating virtual environment..."
21
python -m venv $VenvPath
22
}
23
-
+
24
# Activate virtual environment
25
try {
26
if ($IsWindows) {
27
& "$VenvPath/Scripts/Activate.ps1"
28
} else {
29
- & bash -c 'source "'+$VenvPath+'/bin/activate"'
+ & bash -c "source '$VenvPath/bin/activate'"
30
31
Write-Host "Virtual environment activated"
32
return $true
scripts/seed-database.ps1
100644
100755
0 commit comments