Skip to content

Commit 61759e9

Browse files
committed
Miscellaneous stuff
1 parent 0488524 commit 61759e9

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.test/dist/

.test/dist/.gitkeep

Whitespace-only changes.

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"editor.fontSize": 18,
3-
"workbench.colorTheme": "Monokai Charcoal Full Dark",
3+
"workbench.colorTheme": "Default Dark Modern",
44
"workbench.colorCustomizations": {
55
"editor.lineHighlightBackground": "#202020",
66
"editor.selectionHighlightBackground": "#141414",

excel/convert-xlsx-to-csv.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ $wsEmpty.Activate()
5050
1..2 | % { $wsEmpty.Rows(1).Delete() | Out-Null }
5151

5252
# save file as csv
53-
$wsEmpty.SaveAs("$scriptPath\..\.test\excel.csv", 6)
53+
$wsEmpty.SaveAs("$scriptPath\..\.test\dist\excel.csv", 6)
5454
# close excel application
5555
$Excel.Quit()

system-maintenance/create-file-snapshot.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ try {
2020
git commit -m "$date"
2121
}
2222
}
23+
catch{
24+
Write-Error $_.Exception
25+
}
2326
finally {
2427
Set-Location $current
2528
}

0 commit comments

Comments
 (0)