mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-18 04:38:09 +00:00
16 lines
525 B
Bash
Executable File
16 lines
525 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
set -ex
|
|
|
|
SCRIPT_DIR=$(dirname ${BASH_SOURCE[0]})
|
|
cd ${SCRIPT_DIR}/../../
|
|
|
|
SET_VERSIONS="src/pytypes/onefuzztypes/__version__.py src/api-service/__app__/onefuzzlib/__version__.py src/cli/onefuzz/__version__.py"
|
|
SET_REQS="src/cli/requirements.txt src/api-service/__app__/requirements.txt"
|
|
|
|
sed -i 's/__version__ = .*/__version__ = "0.0.0"/' ${SET_VERSIONS}
|
|
sed -i "s/onefuzztypes==.*/onefuzztypes==0.0.0/" ${SET_REQS}
|