diff options
Diffstat (limited to 'rust/codegen_openapi2.sh')
-rwxr-xr-x | rust/codegen_openapi2.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rust/codegen_openapi2.sh b/rust/codegen_openapi2.sh index 6dbb087d..05e75ff0 100755 --- a/rust/codegen_openapi2.sh +++ b/rust/codegen_openapi2.sh @@ -1,11 +1,11 @@ #!/bin/sh -cargo swagger ../fatcat-openapi2.yml fatcat-api --docker-tag=v2.3.1 -sudo chown `whoami`:`whoami` -R fatcat-api -git checkout fatcat-api/Cargo.toml +cargo swagger ../fatcat-openapi2.yml fatcat-api-spec --docker-tag=v2.3.1 +sudo chown `whoami`:`whoami` -R fatcat-api-spec +git checkout fatcat-api-spec/Cargo.toml # Hack to handle "extra" JSON fields -sed -i 's/Object/serde_json::Value/g' fatcat-api/src/models.rs -sed -i 's/extern crate uuid;/extern crate serde_json;\nextern crate uuid;/g' fatcat-api/src/models.rs +sed -i 's/Object/serde_json::Value/g' fatcat-api-spec/src/models.rs +sed -i 's/extern crate uuid;/extern crate serde_json;\nextern crate uuid;/g' fatcat-api-spec/src/models.rs cargo fmt |