From 63288a62ceeb20c53ba656b89c0f7c709ad9dbaa Mon Sep 17 00:00:00 2001 From: Sebastian Ehlert <28669218+awvwgk@users.noreply.github.com> Date: Wed, 23 Jun 2021 08:56:32 +0200 Subject: Add meaningful error message to example package Co-authored-by: Milan Curcic --- example_packages/version_file/app/main.f90 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'example_packages/version_file/app') diff --git a/example_packages/version_file/app/main.f90 b/example_packages/version_file/app/main.f90 index f2ae87b..fcf8d64 100644 --- a/example_packages/version_file/app/main.f90 +++ b/example_packages/version_file/app/main.f90 @@ -1,10 +1,10 @@ program stub implicit none - logical :: exist + logical :: exists integer :: unit character(len=100) :: line - inquire(file="VERSION", exist=exist) - if (.not.exist) error stop + inquire(file="VERSION", exist=exists) + if (.not.exists) error stop "File VERSION does not exist." open(file="VERSION", newunit=unit) read(unit, '(a)') line close(unit) -- cgit v1.2.3