diff options
| author | AShifter <[email protected]> | 2018-02-25 14:29:41 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2018-02-25 14:29:41 -0700 |
| commit | 24eea3c6900a718ffca598c0b751e16a097bf57d (patch) | |
| tree | efdf0e1b1c4275fddeb3c24d306805c2f3a286b9 /ShiftOS.Main/Terminal/Commands/upgrade.cs | |
| parent | f847236b78d00b9e3c528938fe1331f6817d3dde (diff) | |
| download | shiftos-rewind-24eea3c6900a718ffca598c0b751e16a097bf57d.tar.gz shiftos-rewind-24eea3c6900a718ffca598c0b751e16a097bf57d.tar.bz2 shiftos-rewind-24eea3c6900a718ffca598c0b751e16a097bf57d.zip | |
clean up resources
let's get this show on the road baby
Diffstat (limited to 'ShiftOS.Main/Terminal/Commands/upgrade.cs')
| -rw-r--r-- | ShiftOS.Main/Terminal/Commands/upgrade.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ShiftOS.Main/Terminal/Commands/upgrade.cs b/ShiftOS.Main/Terminal/Commands/upgrade.cs new file mode 100644 index 0000000..83ba103 --- /dev/null +++ b/ShiftOS.Main/Terminal/Commands/upgrade.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ShiftOS.Main.Terminal.Commands +{ + public class upgrade : TerminalCommand + { + public override string Name { get; } = "upgrade"; + public override string Summary { get; } = "Allows you to install upgrades for ShiftOS."; + public override string Usage { get; } = "upgrade <install/list/info> <upgrade>"; + public override bool Unlocked { get; set; } = true; + + public override void Run(params string[] args) + { + if (args.Length == 0) + { + WriteLine("sbash: "); + } + } + } +} |
