mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 14:59:21 +02:00
Add unicode characters
This commit is contained in:
parent
46f7fd7b9c
commit
357ae2cea9
@ -1,7 +1,20 @@
|
|||||||
### Silently installs latest google chrome ###
|
#!/usr/bin/pwsh
|
||||||
$Path = $env:TEMP;
|
<#
|
||||||
$Installer = "chrome_installer.exe"
|
.SYNTAX install-google-chrome.ps1
|
||||||
Invoke-WebRequest "http://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile $Path\$Installer
|
.DESCRIPTION silently installs latest Google Chrome
|
||||||
Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
Remove-Item $Path\$Installer
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
exit 0
|
#>
|
||||||
|
|
||||||
|
try {
|
||||||
|
$Path = $env:TEMP;
|
||||||
|
$Installer = "chrome_installer.exe"
|
||||||
|
Invoke-WebRequest "http://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile $Path\$Installer
|
||||||
|
Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait
|
||||||
|
Remove-Item $Path\$Installer
|
||||||
|
write-host -foregroundColor green "✔️ installed Google Chrome"
|
||||||
|
exit 0
|
||||||
|
} catch {
|
||||||
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/pwsh
|
#!/usr/bin/pwsh
|
||||||
<#
|
<#
|
||||||
.SYNTAX pull-repo.ps1 [<repo-dir>]
|
.SYNTAX pull-repo.ps1 [<repo-dir>]
|
||||||
.DESCRIPTION pulls updates for the current/given Git repository (including submodules)
|
.DESCRIPTION pulls updates for the current/given Git repository (including submodules)
|
||||||
@ -9,7 +9,7 @@
|
|||||||
param($RepoDir = "$PWD")
|
param($RepoDir = "$PWD")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
write-output "Pulling updates for Git repository $RepoDir ..."
|
"→ Pulling updates for Git repository $RepoDir ..."
|
||||||
|
|
||||||
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
||||||
set-location "$RepoDir"
|
set-location "$RepoDir"
|
||||||
@ -20,7 +20,7 @@ try {
|
|||||||
& git status
|
& git status
|
||||||
if ($lastExitCode -ne "0") { throw "'git status' failed" }
|
if ($lastExitCode -ne "0") { throw "'git status' failed" }
|
||||||
|
|
||||||
write-host -foregroundColor green "OK - pulled updates for Git repository $RepoDir"
|
write-host -foregroundColor green "✔️ updates pulled for Git repository $RepoDir"
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
@ -30,7 +30,7 @@ try {
|
|||||||
$Count++
|
$Count++
|
||||||
}
|
}
|
||||||
|
|
||||||
write-host -foregroundColor green "OK - pulled updates for $Count Git repositories under $ParentDir in $($StopWatch.Elapsed.Seconds) second(s)"
|
write-host -foregroundColor green "✔️ pulled updates for $Count Git repositories under $ParentDir in $($StopWatch.Elapsed.Seconds) second(s)"
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/pwsh
|
#!/usr/bin/pwsh
|
||||||
<#
|
<#
|
||||||
.SYNTAX switch-branch.ps1 [<branch-name>] [<repo-dir>]
|
.SYNTAX switch-branch.ps1 [<branch-name>] [<repo-dir>]
|
||||||
.DESCRIPTION switches the branch in the current/given Git repository (including submodules)
|
.DESCRIPTION switches the branch in the current/given Git repository (including submodules)
|
||||||
@ -7,10 +7,7 @@
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
param($BranchName = "", $RepoDir = "$PWD")
|
param($BranchName = "", $RepoDir = "$PWD")
|
||||||
|
if ($BranchName -eq "") { $BranchName = read-host "Enter name of branch to switch to" }
|
||||||
if ($BranchName -eq "") {
|
|
||||||
$BranchName = read-host "Enter name of branch to switch to"
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
|
||||||
|
Loading…
Reference in New Issue
Block a user