From 82300f32d5a191bf5fd2fc7d0acdb2357aaf452b Mon Sep 17 00:00:00 2001 From: Matt Mullins Date: Sun, 1 Dec 2019 20:40:46 -0800 Subject: [PATCH] appup files inexplicably go in ebin/, not src/ Well, it's sort-of explicable: they should be available verbatim using the Erlang interpreter's code path, and I'm not using any of the magical rebar3 plugins for automatic appup generation. --- amqp/{src => ebin}/amqp.appup | 0 core/{src => ebin}/core.appup | 0 irc/{src => ebin}/irc.appup | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename amqp/{src => ebin}/amqp.appup (100%) rename core/{src => ebin}/core.appup (100%) rename irc/{src => ebin}/irc.appup (100%) diff --git a/amqp/src/amqp.appup b/amqp/ebin/amqp.appup similarity index 100% rename from amqp/src/amqp.appup rename to amqp/ebin/amqp.appup diff --git a/core/src/core.appup b/core/ebin/core.appup similarity index 100% rename from core/src/core.appup rename to core/ebin/core.appup diff --git a/irc/src/irc.appup b/irc/ebin/irc.appup similarity index 100% rename from irc/src/irc.appup rename to irc/ebin/irc.appup -- 2.11.0