mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
Set draft flag to false
This commit is contained in:
parent
6ec604d2be
commit
ecc22fcb52
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Quick Python: Check Submodule Load"
|
||||
date: 2022-12-01T21:12:03-05:00
|
||||
draft: true
|
||||
draft: false
|
||||
tags: ["Python"]
|
||||
math: false
|
||||
---
|
||||
|
@ -73,4 +73,4 @@ Notice the `+` behind the second submodule. According to the man page for `git s
|
|||
|
||||
The existence of the `+` would make this check fail. However, no prefixes will make the check succeed.
|
||||
|
||||
By executing this function within the repositories `setup.py`, it verifies that the needed dependencies are checked out and clean before installing the python package. Checks like these make python packages feel a little more stable.
|
||||
By executing this function within the repositories `setup.py`, it verifies that the needed dependencies are checked out and clean before installing the python package. Checks like these make python packages feel a little more stable.
|
||||
|
|
Loading…
Reference in a new issue