Use long form option for cp

This commit is contained in:
Paul Reeves 2023-02-03 15:02:47 +01:00
parent a538f02d72
commit bb1fdf8833
1 changed files with 3 additions and 2 deletions

View File

@ -5,9 +5,10 @@ set names UTF8;
input recreate_db.ddl;
-- deploy the UDR library
shell cp -L ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ;
shell cp --dereference ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ;
-- declare the UDR library - must be done before we declare database objects!
-- declare the UDR library - must be done before we declare
-- database objects that reference functions in the library!
input ../sql/MyFirstUDRKit.ddl;