Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gpspipe argument incompatibility in constants.py for Rocky Linux 8 #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

joshuafuller
Copy link

Fix gpspipe Argument Incompatibility in constants.py for Rocky Linux 8

Summary

On Rocky Linux 8 with gpspipe version 3.19, the --json argument is unsupported. This causes Lincot to fail during execution. This issue was reported in GitHub issue #[Issue_Number].

Details

The constants.py file contained a string DEFAULT_GPS_INFO_CMD that was using this incompatible --json argument. This commit replaces the --json argument with -w in the DEFAULT_GPS_INFO_CMD string, making the gpspipe command compatible across different versions.

File Changed

  • Modified: DEFAULT_GPS_INFO_CMD in constants.py
    From: gpspipe --json -n 5
    To: gpspipe -w -n 5

Testing

  • Manually tested on Rocky Linux 8 with gpspipe version 3.19.
  • Confirmed that Lincot now runs without errors.

Conclusion

This change should make Lincot more robust and compatible across different Linux distributions and gpspipe versions.

… Linux 8

Body:
On Rocky Linux 8 with gpspipe version 3.19, the `--json` argument is unsupported, causing Lincot to fail during execution. The issue was reported in GitHub issue #[Issue_Number]. The constants.py file contained a string `DEFAULT_GPS_INFO_CMD` which was using this incompatible `--json` argument.

This commit replaces the `--json` argument with `-w` in the `DEFAULT_GPS_INFO_CMD` string, making the gpspipe command compatible across different versions.

File Changed:
- Modified DEFAULT_GPS_INFO_CMD in constants.py from `gpspipe --json -n 5` to `gpspipe -w -n 5`.

Tested:
- Manually tested on Rocky Linux 8 with gpspipe version 3.19 and confirmed that Lincot now runs without errors.

This change should make Lincot more robust and compatible across different Linux distributions and gpspipe versions.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant