Merge pull request #9 from ghostbsd/rework-install-station

Fixed detect-scheme.sh typo
This commit is contained in:
Eric Turgeon
2025-09-24 19:45:23 -03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ def get_scheme(disk: str) -> str:
str: Partition scheme ('GPT', 'MBR', or empty if none)
"""
scheme_output = Popen(
f"{query}/detect-sheme.sh {disk}",
f"{query}/detect-scheme.sh {disk}",
shell=True,
stdin=PIPE,
stdout=PIPE,
@@ -31,9 +31,9 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# /usr/local/etc/install-station/detect-sheme.sh v 0.1 Wed May 1 20:31:52 ADT 2013 Eric Turgeon
# /usr/local/etc/install-station/detect-scheme.sh v 0.1 Wed May 1 20:31:52 ADT 2013 Eric Turgeon
#
# Detect a disk sheme and display them.
# Detect a disk scheme and display them.
#