From 0ff6bd8dea4a4fe649c67ff824de959bace2298b Mon Sep 17 00:00:00 2001 From: Jesse Schmidt Date: Wed, 3 Apr 2024 13:54:37 -0700 Subject: [PATCH] Update readme --- .github/workflows/tests.yml | 2 ++ README.md | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 73615f3d..9fa9c9e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,6 +9,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + submodules: true - name: Get Python version from Pipfile run: echo "PYTHON_VERSION=$(grep "python_full_version" Pipfile | cut -d ' ' -f 3 - | tr -d '"')" >> $GITHUB_ENV - name: Set up Python ${{ env.PYTHON_VERSION }} diff --git a/README.md b/README.md index ff7e2d52..1ee12cd0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,8 @@ bundled with asadm version 2.6 and later. ### Build and Install Asadm 1. Install python 3.10 2. Install [pipenv](https://pypi.org/project/pipenv/) -3. Build Asadm +3. Initialize submodules `git submodule update --init` +4. Build Asadm - There are two ways asadm can be bundled: one-file and one-dir. Both, are related to pyinstaller's two methods of bundling. The one-file build is great if you want a single executable artifact. The downside of one-file is that it must decompress into a /tmp @@ -41,7 +42,7 @@ bundled with asadm version 2.6 and later. ``` make one-file ``` -4. Install asadm +5. Install asadm ``` sudo make install ```