make scripts names more consistent
This commit is contained in:
parent
bc973e25f9
commit
04d8a06b24
4 changed files with 5 additions and 5 deletions
|
|
@ -164,14 +164,14 @@ $ git clone https://github.com/nix-community/NUR
|
|||
}
|
||||
```
|
||||
|
||||
At the moment each URL must point to a git repository. By running `nur/update.py`
|
||||
At the moment each URL must point to a git repository. By running `nur/update`
|
||||
the corresponding `repos.json.lock` is updated and the repository is tested. This will
|
||||
perform also an evaluation check, which must be passed for your repository. Commit the changed
|
||||
`repos.json` but NOT `repos.json.lock`
|
||||
|
||||
```
|
||||
$ git add repos.json
|
||||
$ ./nur/format_repos_manifest # ensure repos.json is sorted alphabetically
|
||||
$ ./nur/format_manifest # ensure repos.json is sorted alphabetically
|
||||
$ git commit -m "add <your-repo-name> repository"
|
||||
$ git push
|
||||
```
|
||||
|
|
|
|||
|
|
@ -14,15 +14,15 @@ fi
|
|||
|
||||
export encrypted_025d6e877aa4_key= encrypted_025d6e877aa4_iv=
|
||||
|
||||
./nur/format_repos_manifest
|
||||
./nur/format_manifest
|
||||
if [ -n "$(git diff --exit-code repos.json)" ]; then
|
||||
echo "repos.json was not formatted before committing repos.json:" >&2
|
||||
git diff --exit-code repos.json
|
||||
echo "Please run ./nur/format_repos_manifest and updates repos.json accordingly!" >&2
|
||||
echo "Please run ./nur/format_manifest and updates repos.json accordingly!" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
./nur/update.py
|
||||
./nur/update
|
||||
nix-build
|
||||
|
||||
# Pull requests and commits to other branches shouldn't try to deploy, just build to verify
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue