Skip to content

Commit b412be2

Browse files
committed
Convert all *.ps* scripts to ascii
1 parent 5486517 commit b412be2

16 files changed

+15
-15
lines changed

Diff for: Compare-Heads.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
$RemoteSha = Get-RemoteHead -Url (get-origin) -Branch (get-branch)
1+
$RemoteSha = Get-RemoteHead -Url (get-origin) -Branch (get-branch)
22
return (Get-Head) -eq $RemoteSha

Diff for: Get-Head.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git rev-parse HEAD
1+
git rev-parse HEAD

Diff for: Get-PackageName.ps1

-126 Bytes
Binary file not shown.

Diff for: Get-RemoteHead.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
param
1+
param
22
(
33
[Parameter(Mandatory=$true)]
44
[String]$Url,

Diff for: New-DynamicParam.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Set-Example {
1+
function Set-Example {
22
[CmdletBinding()]
33
param (
44
[Parameter(Mandatory)]
@@ -118,4 +118,4 @@ function New-DynamicParameter
118118
$RuntimeParam = New-Object System.Management.Automation.RuntimeDefinedParameter($Name, $Type, $AttribColl)
119119
$RuntimeParam
120120

121-
}
121+
}

Diff for: adbstart.ps1

-158 Bytes
Binary file not shown.

Diff for: clone.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
param
1+
param
22
(
33
$Repo,
44
$User = "madsbangh"
55
)
66

7-
git clone "https://github.com/$User/$Repo.git"
7+
git clone "https://github.com/$User/$Repo.git"

Diff for: devices.ps1

-104 Bytes
Binary file not shown.

Diff for: get-branch.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git rev-parse --abbrev-ref HEAD
1+
git rev-parse --abbrev-ref HEAD

Diff for: get-origin.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git config --get remote.origin.url
1+
git config --get remote.origin.url

Diff for: greplog.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git shortlog --no-merges --grep $args[0] --regexp-ignore-case --extended-regexp --pretty=format:"%ar: %s%n"
1+
git shortlog --no-merges --grep $args[0] --regexp-ignore-case --extended-regexp --pretty=format:"%ar: %s%n"

Diff for: installall.ps1

-87 Bytes
Binary file not shown.

Diff for: listen.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ start-job {
44
sleep 30
55
git fetch
66
}
7-
} -ArgumentList (gl) -Name ListenAndFetch
7+
} -ArgumentList (gl) -Name ListenAndFetch

Diff for: qp.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
$branch = (Get-GitStatus).Branch
2-
git merge "origin/$branch"
2+
git merge "origin/$branch"

Diff for: recent.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
param
1+
param
22
(
33
[switch] $Hash,
44
[switch] $Name,
@@ -42,4 +42,4 @@ if ($Hash)
4242
$format += " (%h)"
4343
}
4444

45-
git log --format="%aN" | sort -u | foreach {if($Titles){echo "$_"} git log --format="$format" --author=$_ --since="$days days ago" --no-merges; echo ""}
45+
git log --format="%aN" | sort -u | foreach {if($Titles){echo "$_"} git log --format="$format" --author=$_ --since="$days days ago" --no-merges; echo ""}

Diff for: sf.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git show --name-status @args
1+
git show --name-status @args

0 commit comments

Comments
 (0)