Compare commits
No commits in common. "90e2c1a888880ae8895ccaccd4066253354635ff" and "cb67bdb0515c54552a3c0b5776cceeb9f19fd800" have entirely different histories.
90e2c1a888
...
cb67bdb051
2 changed files with 7 additions and 4 deletions
|
@ -16,8 +16,6 @@ from time import sleep
|
|||
from typing import Callable
|
||||
from urllib import parse as urlparse
|
||||
|
||||
from fastmail import FastMailSMTP
|
||||
from flask import Flask as App, render_template
|
||||
from octorest import OctoRest as _OR
|
||||
from requests import Response
|
||||
from requests.exceptions import (
|
||||
|
@ -25,7 +23,10 @@ from requests.exceptions import (
|
|||
HTTPError,
|
||||
Timeout,
|
||||
)
|
||||
from flask import Flask as App, current_app, render_template
|
||||
|
||||
from tentacles.store import Store
|
||||
from fastmail import FastMailSMTP
|
||||
|
||||
|
||||
class OctoRest(_OR):
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
set -euox pipefail
|
||||
cd "$(git rev-parse --show-toplevel)"
|
||||
|
||||
DIRS=("${@:-projects tools}")
|
||||
bazel build //tools/... //projects/reqman
|
||||
|
||||
DIRS=(projects tools)
|
||||
|
||||
function brl() {
|
||||
bin="$1"
|
||||
|
@ -18,4 +20,4 @@ for d in "${DIRS[@]}"; do
|
|||
brl tools/unify --quote '"' -ir $(realpath "$d")
|
||||
done
|
||||
|
||||
# brl projects/reqman clean tools/python/requirements.txt
|
||||
brl projects/reqman clean tools/python/requirements.txt
|
||||
|
|
Loading…
Reference in a new issue