You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose we run nattka on something that was already done/handled:
At the time of writing, arm64 was done in bug 869125:
apply:
~ $ nattka apply -a arm64 869125 ; echo $?
0
commit:
~ $ nattka commit -a arm64 869125 ; echo $?
ERROR:nattka:Bug 869125: no packages match requested arch
1
resolve:
~ $ nattka resolve -a arm64 869125 ; echo $?
WARNING:nattka:Bug 869125: no specified arches CC-ed, found: ppc ppc64
0
To have the same behavior everywhere, commit should return 0, or apply and resolve should return 1
Since the workflow is apply -> commit -> resolve, another solution can be implement something on apply (like pretend?) that inform in whatever way if you are doing something doable or not.
The text was updated successfully, but these errors were encountered:
Suppose we run nattka on something that was already done/handled:
At the time of writing, arm64 was done in bug 869125:
apply:
commit:
resolve:
To have the same behavior everywhere,
commit
should return 0, orapply
andresolve
should return 1Since the workflow is apply -> commit -> resolve, another solution can be implement something on apply (like pretend?) that inform in whatever way if you are doing something doable or not.
The text was updated successfully, but these errors were encountered: