From 0d3121a2a2751186e93f7544ea32af69dbf9f188 Mon Sep 17 00:00:00 2001 From: Steven Peguero Date: Thu, 4 Aug 2022 17:14:23 -0400 Subject: [PATCH] readme: change dir names and paths --- README.md | 10 +++++----- badge/project_status.svg | 1 - .../examplepackage}/example.ps1 | 0 .../examplepackage}/package.xml | 0 .../examplepackage}/powerpkg.ps1 | 0 {readme => img}/example_verifyinstall_program.gif | Bin {readme => img}/header.gif | Bin 7 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 badge/project_status.svg rename {example_package => contrib/examplepackage}/example.ps1 (100%) rename {example_package => contrib/examplepackage}/package.xml (100%) rename {example_package => contrib/examplepackage}/powerpkg.ps1 (100%) rename {readme => img}/example_verifyinstall_program.gif (100%) rename {readme => img}/header.gif (100%) diff --git a/README.md b/README.md index a158196..adde2fc 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # powerpkg -![](/readme/header.gif) +![](/img/header.gif) `powerpkg` is a Windows-exclusive software deployment facilitator for enterprise environments, serving as an installation (or uninstallation) script for individual software packages; with optional actions, conditions and exceptions as core features. It is deliberately designed to use a [configuration file](#package-file-packagexml) model, ensuring a low learning curve, code standardization among every instance, and easy software updates (when available). @@ -41,7 +41,7 @@ To begin testing powerpkg: **(2)**: Invoke `powerpkg.ps1`: ```shell -powershell.exe -NoProfile -ExecutionPolicy Unrestricted -File "example_package\powerpkg.ps1" +powershell.exe -NoProfile -ExecutionPolicy Unrestricted -File "contrib\examplepackage\powerpkg.ps1" ``` **(3)**: *And that's it!* @@ -210,7 +210,7 @@ Which, with a bit of customization, can become the following example: ``` -To further familiarize yourself with powerpkg (and especially the above examples), continue reading the [Script Configuration](#script-configuration-configuration) and [Task Entry](#task-entry-taskentry) segments of this README. Examining the contents of the `\example_package` directory is also encouraged. +To further familiarize yourself with powerpkg (and especially the above examples), continue reading the [Script Configuration](#script-configuration-configuration) and [Task Entry](#task-entry-taskentry) segments of this README. Examining the contents of the `\contrib\examplepackage` directory is also encouraged. ### Script Configuration (``) @@ -508,7 +508,7 @@ To utilize the **`[Program]`** subparameter, you can verify the existence of a: - Open the `Programs and Features` applet of the Windows Control Panel, and retrieve the name of the installed program you wish to verify the existence of: - ![Programs and Features](/readme/example_verifyinstall_program.gif) + ![Programs and Features](/img/example_verifyinstall_program.gif) - Within PowerShell, enter the following command: @@ -546,7 +546,7 @@ To utilize the **`[Program]`** subparameter, you can verify the existence of a: - Open the `Programs and Features` applet of the Windows Control Panel, and retrieve the name of the installed program you wish to verify the existence of: - ![Programs and Features](/readme/example_verifyinstall_program.gif) + ![Programs and Features](/img/example_verifyinstall_program.gif) - Then, specify a program name in this fashion: diff --git a/badge/project_status.svg b/badge/project_status.svg deleted file mode 100644 index 6831681..0000000 --- a/badge/project_status.svg +++ /dev/null @@ -1 +0,0 @@ - project statusproject statusretiredretired \ No newline at end of file diff --git a/example_package/example.ps1 b/contrib/examplepackage/example.ps1 similarity index 100% rename from example_package/example.ps1 rename to contrib/examplepackage/example.ps1 diff --git a/example_package/package.xml b/contrib/examplepackage/package.xml similarity index 100% rename from example_package/package.xml rename to contrib/examplepackage/package.xml diff --git a/example_package/powerpkg.ps1 b/contrib/examplepackage/powerpkg.ps1 similarity index 100% rename from example_package/powerpkg.ps1 rename to contrib/examplepackage/powerpkg.ps1 diff --git a/readme/example_verifyinstall_program.gif b/img/example_verifyinstall_program.gif similarity index 100% rename from readme/example_verifyinstall_program.gif rename to img/example_verifyinstall_program.gif diff --git a/readme/header.gif b/img/header.gif similarity index 100% rename from readme/header.gif rename to img/header.gif -- 2.38.4