Skip to content

Commit c653a16

Browse files
Resolve #2
1 parent 1328a72 commit c653a16

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
> - v0.0.2, 23.05.2024
4+
> - Bugfix (https://github.com/netcloud/powershell-cli-menu-helpers/issues/2)
5+
36
> - v0.0.2, 06.01.2021
47
> - Changed url's to new github repo.
58
> - Added code signing step in build process.

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"ModuleName": "powershell-cli-menu-helpers",
3-
"ModuleVersion": "0.0.2",
3+
"ModuleVersion": "0.0.3",
44
"GUID": "2876be78-754c-4b00-b390-d871c61ce66b",
55
"Author": "Patrick Grazioli",
66
"CompanyName": "Netcloud AG",

example/vars/menu_vars.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Global path vars
22
$menu_script_root_dir = Split-Path -Path $PSScriptRoot -Parent # The path of the current folder
33
$menu_funciton_dir = '.\functions' # The path to all helper functions
4-
$menu_menu_dir = $menu_script_root_dir + '\Example PowerShell CLI Menu' # The path to the menu structure
4+
$menu_menu_dir = Join-Path -Path $menu_script_root_dir -ChildPath '\Example PowerShell CLI Menu' # The path to the menu structuree

example/vars/user_vars.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
$user_rdp_connections = $menu_script_root_dir + '\files\rdp\connections.json'
1+
$user_rdp_connections = Join-Path -Path $menu_script_root_dir -ChildPath '\files\rdp\connections.json'

0 commit comments

Comments
 (0)