Skip to content

Commit a152936

Browse files
committed
Formatting.
Signed-off-by: Alexander Adam <alphaone23@gmail.com>
1 parent c8c1357 commit a152936

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636
run: |
3737
set -euo pipefail
38-
38+
3939
TAG=`echo "${{ github.event.release.tag_name }}" | sed 's/\//-/g'`
4040
git archive \
4141
--format=tar.gz \
@@ -73,7 +73,7 @@ jobs:
7373
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7474
run: |
7575
set -euo pipefail
76-
76+
7777
mkdir -p release-assets
7878
cd release-assets
7979
# gets all assets of the release
@@ -85,7 +85,7 @@ jobs:
8585
working-directory: release-assets
8686
run: |
8787
set -euo pipefail
88-
88+
8989
# Robustly hash all regular files in this directory, then base64 and write via tee.
9090
LC_ALL=C find . -maxdepth 1 -type f -printf '%P\0' \
9191
| sort -z \

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
id: PrintSarif
9999
run: |
100100
cat govulncheck-results.sarif
101-
101+
102102
if grep results govulncheck-results.sarif
103103
then
104104
echo "hasResults=true" >> $GITHUB_OUTPUT

dialect_db2.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ func DialectDB2() BaseDialect {
99
CreateTemplate: `
1010
BEGIN
1111
IF NOT EXISTS (
12-
SELECT 1
13-
FROM SYSIBM.SYSTABLES
12+
SELECT 1
13+
FROM SYSIBM.SYSTABLES
1414
WHERE NAME = '%s' AND TYPE = 'T'
1515
)
1616
THEN

dialect_mssql.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ func DialectMSSQL() BaseDialect {
88
return BaseDialect{
99
CreateTemplate: `
1010
IF NOT EXISTS (
11-
SELECT *
12-
FROM sysobjects
11+
SELECT *
12+
FROM sysobjects
1313
WHERE name = '%s' AND xtype = 'U'
1414
)
1515
CREATE TABLE [%s] (

0 commit comments

Comments
 (0)