This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: Creates empty .kit files in the _BadGuys dir mirroring the files in original BadGuys | |
| :: allowing for them to be used in the mission editor. | |
| @echo off | |
| setlocal | |
| set sourceDir=GroundBranch\Content\GroundBranch\AI\Loadouts\BadGuys | |
| set targetDir=GroundBranch\Content\GroundBranch\AI\Loadouts\_BadGuys | |
| if not exist %targetDir% ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # Creates and displays a 3 part bash prompt. The parts are: | |
| # 1. user@host:absolute-path | |
| # [bg: cyan; text: black] | |
| # 2. (if in git repo) git-branch git-status-icon | |
| # [bg: red/yellow/green depending if behind-or-divereged/ahead/up-to-date with remote; text: black] | |
| # 3. bash prompt | |
| # [bg: black; text: green/red based on last command exit code] |