Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

> - v0.0.2, 23.05.2024
> - Bugfix (https://github.com/netcloud/powershell-cli-menu-helpers/issues/2)

> - v0.0.2, 06.01.2021
> - Changed url's to new github repo.
> - Added code signing step in build process.
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"ModuleName": "powershell-cli-menu-helpers",
"ModuleVersion": "0.0.2",
"ModuleVersion": "0.0.3",
"GUID": "2876be78-754c-4b00-b390-d871c61ce66b",
"Author": "Patrick Grazioli",
"CompanyName": "Netcloud AG",
Expand Down
2 changes: 1 addition & 1 deletion example/vars/menu_vars.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Global path vars
$menu_script_root_dir = Split-Path -Path $PSScriptRoot -Parent # The path of the current folder
$menu_funciton_dir = '.\functions' # The path to all helper functions
$menu_menu_dir = $menu_script_root_dir + '\Example PowerShell CLI Menu' # The path to the menu structure
$menu_menu_dir = Join-Path -Path $menu_script_root_dir -ChildPath '\Example PowerShell CLI Menu' # The path to the menu structuree
2 changes: 1 addition & 1 deletion example/vars/user_vars.ps1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
$user_rdp_connections = $menu_script_root_dir + '\files\rdp\connections.json'
$user_rdp_connections = Join-Path -Path $menu_script_root_dir -ChildPath '\files\rdp\connections.json'