Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@

### Changed


## [v1.5.0] 2026-01-22
### Changed

- Minor changes to get VIIRS to work in ADAS v5.43x
- Move setup_gaas_obs.pl from GMAO_Etc here for consistency
- chmod +x pl script

## [v1.4.0] 2025-12-03

Expand Down
6 changes: 3 additions & 3 deletions src/Applications/GAAS_App/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ install(
DESTINATION lib/Python
)

file(GLOB perl_files *.pl)
file(GLOB pcf_files *.pcf)
file(GLOB perl_files CONFIGURE_DEPENDS *.pl)
file(GLOB pcf_files CONFIGURE_DEPENDS *.pcf)

install (
FILES ${pcf_files}
DESTINATION etc
)

install (
FILES ${perl_files}
PROGRAMS ${perl_files}
DESTINATION bin
)

Expand Down
2 changes: 1 addition & 1 deletion src/Applications/GAAS_App/setup_gaas_obs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
move($file, $subdir);
}
}

if ($viirs) {
foreach $file (<$workdir/VN20AERD?_L2_VIIRS_NOAA20.*.*.nc>) {
$base = basename $file;
Expand Down