Rename setup-test-tools.sh to setup-dev.sh (#1320)

pull/1323/head
Gulshan Singh 3 years ago committed by GitHub
parent 61ad340d25
commit b0b6a8fa30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
./setup.sh --user
./setup-test-tools.sh --user
./setup-dev.sh --user
sudo snap install shfmt
- name: Run linters

@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
./setup.sh --user
./setup-test-tools.sh --user
./setup-dev.sh --user
pip install --user coveralls
- name: Python version info

@ -1,6 +1,6 @@
# Environment setup
After installing `pwndbg` by running `setup.sh`, you additionally need to run `./setup-test-tools.sh` to install the necessary development dependencies.
After installing `pwndbg` by running `setup.sh`, you additionally need to run `./setup-dev.sh` to install the necessary development dependencies.
If you would like to use Docker, you can create a Docker image with everything already installed for you. To do this, run the following command:
```bash

@ -33,8 +33,8 @@ RUN sed -i "s/^git submodule/#git submodule/" ./setup.sh && \
DEBIAN_FRONTEND=noninteractive ./setup.sh
# Comment these lines if you won't run the tests.
ADD ./setup-test-tools.sh /pwndbg/
RUN ./setup-test-tools.sh
ADD ./setup-dev.sh /pwndbg/
RUN ./setup-dev.sh
RUN echo "source /pwndbg/gdbinit.py" >> ~/.gdbinit.py && \
echo "PYTHON_MINOR=$(python3 -c "import sys;print(sys.version_info.minor)")" >> /root/.bashrc && \

Loading…
Cancel
Save